1
0
mirror of https://github.com/PurpleI2P/pyseeder synced 2025-01-17 10:19:56 +00:00
pyseeder/INSTALL.md

34 lines
708 B
Markdown
Raw Normal View History

Installation
============
2017-07-04 15:10:05 -04:00
Requirements: python3 and python cryptography package, requests for transports
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
2017-07-04 15:10:05 -04:00
pip3 install .
Thats it! Next time you will need to run pyseeder, don't forget to activate
python virtual environment as followed:
. venv/bin/activate