Skip to content

Commit a200e4f

Browse files
committed
Fix installation command in documentation
1 parent 599ea4d commit a200e4f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/Installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,14 @@ Assuming you have ``pip`` installed, you can do this:
147147
.. sourcecode:: bash
148148

149149
sudo pip2 install -r requirements.txt
150-
sudo pip2 setup.py install
150+
sudo python2 setup.py install
151151

152152
This command installs python dependencies globally. Note that on some distros, like Arch Linux, this might interfere with the system package manager. If you want to perform the installation in your home folder instead, then you can do this instead:
153153

154154
.. sourcecode:: bash
155155

156156
pip2 install --user -r requirements.txt
157-
pip2 setup.py install --user
157+
python2 setup.py install --user
158158

159159
Method 2: Virtual environment
160160
-----------------------------

0 commit comments

Comments
 (0)