mirror of https://github.com/PurpleI2P/pyseeder
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
700 B
33 lines
700 B
8 years ago
|
Installation
|
||
|
============
|
||
|
|
||
|
Requirements: python3 and python cryptography package
|
||
|
|
||
|
Example for Ubuntu/Debian
|
||
|
-------------------------
|
||
|
|
||
|
|
||
|
Basic python packages & packages for building python cryptography package:
|
||
|
|
||
|
sudo apt-get install python3 python3-pip python3-virtualenv build-essential libssl-dev libffi-dev python-dev
|
||
|
|
||
|
|
||
|
Clone repo:
|
||
|
|
||
|
git clone https://github.com/PurpleI2P/pyseeder.git
|
||
|
|
||
|
|
||
|
Configure new python virtual environment:
|
||
|
|
||
|
cd pyseeder
|
||
|
virtualenv --python=python3 venv
|
||
|
. venv/bin/activate
|
||
|
pip3 install -r requirements.txt
|
||
|
|
||
|
|
||
|
Thats it! Next time you will need to run pyseeder, don't forget to activate
|
||
|
python virtual environment as followed:
|
||
|
|
||
|
. venv/bin/activate
|
||
|
|