50

I download the tar.bz file from the home page of zotero, extract it and run the file 'run-zotero.sh', but it open zotero rather than install it. How to install it? Any help or suggestion will be appreciated!

Josh Pinto
  • 7,769
  • 22
  • 80
  • 128
Eden Harder
  • 697
  • 1
  • 6
  • 13

8 Answers8

49

I suggest you add a ppa so that the program gets updated regularly:

sudo apt-add-repository ppa:smathot/cogscinl 

Say yes/press enter to accept any requests.

sudo apt-get update

wait for it to complete, then:

sudo apt-get install zotero-standalone

This will install the program.

Boluc Papuccuoglu
  • 596
  • 1
  • 3
  • 5
45

As of 2019, the preferred way of installing Zotero is by using Emiliano Heyns' packages.

Run the following instructions on your terminal:

wget -qO- https://github.com/retorquere/zotero-deb/releases/download/apt-get/install.sh | sudo bash
sudo apt update
sudo apt install zotero

For additional information about the provided packages, see the README file.

Other answers should be considered obsolete, Sebastiaan Mathot's packages being no longer maintained.

Nicolas Girard
  • 606
  • 6
  • 3
  • I ran into an problem with this -- it looks like the repo has a hosting problem and so the owner recommends installing from Sourceforge for now. For more info see the readme and issue https://github.com/retorquere/zotero-deb/issues/49 – ascendants Dec 07 '21 at 22:14
  • *the preferred way* is now probably snap, as it is available out of the box in the Ubuntu snap repos – moo Apr 30 '23 at 09:42
15

This project is designed to automate installation. It worked for me with 13.04. To install it, run the following in your terminal:

wget https://raw.github.com/smathot/zotero_installer/master/zotero_installer.sh -O /tmp/zotero_installer.sh
chmod +x /tmp/zotero_installer.sh
/tmp/zotero_installer.sh

and answer the questions. If you want it to be installed globally, you will need sudo on the last command:

sudo /tmp/zotero_installer.sh
Ian Hincks
  • 2,761
  • 2
  • 26
  • 22
7

It's 2022 and Zotero is available as a snap in Ubuntu. A version of Zotero can be installed without having to add additional repositories (although you may get a more recent version if you do use some of the techniques from other answers).

To install:

snap install zotero-snap
BeastOfCaerbannog
  • 12,964
  • 10
  • 49
  • 77
moo
  • 675
  • 6
  • 14
6

I have installed Zotero on Ubuntu 20.04 LTS recently.

This is how I have done:

  • First I downloaded the tarball from the Zotero Download page, extract its contents to a folder named Zotero_linux-x86_64.
  • Then I ran the following commands in the terminal:
sudo mv -v Zotero_linux-x86_64 /opt/zotero/
ln -s /opt/zotero/zotero.desktop ~/.local/share/applications/zotero.desktop
sudo /opt/zotero/set_launcher_icon

That's it. The installation's completed.

raf
  • 313
  • 1
  • 3
  • 10
1

I have searched and came to know that , there only standalone Zotero PPA not yet made for Ubuntu 13.04 . you can run it as you've done with the script upto PPA made.

but Ubuntu have a good Documentation for Zotero that can help you to get more information on usage of it.

https://help.ubuntu.com/community/Zotero

Raja G
  • 100,643
  • 105
  • 254
  • 328
1

I found a help here https://www.linuxhelp.com/how-to-install-zotero-in-ubuntu/

The steps in the terminal are

  1. sudo add-apt-repository ppa:smathot/cogscinl

Type your password and press ENTER when asked.

  1. sudo apt-get update

  2. sudo apt-get install zotero-standalone

This will install Zotero

Nick Weinberg
  • 4,555
  • 4
  • 24
  • 30
RYAN REGO
  • 19
  • 2
  • 3
    Same thing as described in https://askubuntu.com/a/332117/15003. – edwinksl Aug 03 '17 at 17:19
  • 2
    How is this answer different from @Boluc Papuccuoglu's? `add-apt-repository` is a symlink, this should have been a comment below the aforementioned answer at most. – Calimo Oct 23 '17 at 12:00
  • 1
    Also they are no longer maintaining it. – TKH Apr 15 '20 at 19:04
0

The zotero installation page has decent instructions but they should have supplied the commands. Below are the commands I used (assuming the downloads folder is where your downloaded tar ball ended up):

cd /opt/
sudo mkdir zotero
cd ~/Downloads/
sudo tar -xf Zotero-6.0.9_linux-x86_64.tar.bz2 -C /opt/zotero/
cd /opt/zotero/Zotero_linux-x86_64/
sudo ./set_launcher_icon
ln -s /opt/zotero/Zotero_linux-x86_64/zotero.desktop ~/.local/share/applications/zotero.desktop

A quick script could be made from these simple commands if desired.

jman
  • 175
  • 2
  • 8