AndroxxTraxxon / digi-cash

Anonymous Digital Cash

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Digi-Cash Digital Anonymous Cash Transfer POC

This project is intended to be a proof-of-concept for the digital anonymous cash

Python Environment Setup using venv

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 

Running the application

TODO: Write this part.

About

Anonymous Digital Cash


Languages

Language:Python 100.0%