This project is intended to be a proof-of-concept for the digital anonymous cash
Linux:
cd /path/to/digi-cash # move into the project directory
python -m venv __venv__ # use builtin module `venv` to create a project environment
source __venv__/bin/activate # Activate the virtual environment
pip install --upgrade pip # upgrade pip, it's usually a little out of date from the venv setup.
pip install -r requirements.txt # install the required libraries listed in the
Windows:
cd /path/to/digi-cash # move into the project directory
python -m venv __venv__ # use builtin module `venv` to create a project environment
./__venv__/Scripts/activate # Activate the virtual environment
pip install --upgrade pip # upgrade pip, it's usually a little out of date from the venv setup.
pip install -r requirements.txt # install the required libraries listed in the
TODO: Write this part.