first commit
This commit is contained in:
parent
1e63e9e1cc
commit
5f4d453765
27 changed files with 1864 additions and 0 deletions
36
docs/source/install.rst
Normal file
36
docs/source/install.rst
Normal file
|
@ -0,0 +1,36 @@
|
|||
How to install Feed2toot
|
||||
========================
|
||||
From PyPI
|
||||
^^^^^^^^^
|
||||
$ pip3 install feed2toot
|
||||
|
||||
From sources
|
||||
^^^^^^^^^^^^
|
||||
* You need at least Python 3.4.
|
||||
|
||||
* On some Linux Distribution **setuptools** package does not come with default python install, you need to install it.
|
||||
|
||||
* Install **PIP**::
|
||||
|
||||
$ wget https://bootstrap.pypa.io/get-pip.py -O - | sudo python3
|
||||
|
||||
|
||||
* Install **setuptools** module::
|
||||
|
||||
$ wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python3
|
||||
|
||||
Alternatively, Setuptools may be installed to a user-local path::
|
||||
|
||||
$ wget https://bootstrap.pypa.io/ez_setup.py -O - | python3 - --user
|
||||
|
||||
* Untar the tarball and go to the source directory with the following commands::
|
||||
|
||||
$ tar zxvf feed2toot-0.1.tar.gz
|
||||
$ cd feed2toot
|
||||
|
||||
* Next, to install Feed2toot on your computer, type the following command with the root user::
|
||||
|
||||
$ python3 setup.py install
|
||||
$ # or
|
||||
$ python3 setup.py install --install-scripts=/usr/bin
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue