Supports Python 3.6+ and has been tested so far to run on Windows systems.
- Make sure that the version of python you see when you rn
python --versionis 3.6 or higher. - Run
virtualenv ENVNAMEto create a new virtual environment named ENVNAME (choose whatever you like, typical is venv). - Run
.\venv\Scripts\activateto activate the virtual environemtn after its created. - Run
pip install -r requirements.txtto install all the required dependencies for this project.
Simple as pie. Once these steps are done, you should be good to go.