py2peer
is a collection of Python libraries that enables applications to interact with a wide assortment of different file-sharing networks and protocols.
- Make sure you have a working Python virtual environment at the root of the project. This can be done by running
venv
orvirtualenv
, depending on the version of the Python interpreter currently installed in your machine.
~$ python -m venv .venv
- Activate your virtual environment
~$ source .venv/bin/activate
- Upgrade
pip
and install the requirements
~$ pip install --upgrade pip
~$ pip install -r requirements.txt