Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 595 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 595 Bytes

swingtrade

Setting up development environment

This application requires a Python 3 interpreter.

To build the application, start a virtual environment using venv:

On Linux

python3 -m venv env
source ./env/bin/activate
python install -r requirements.txt

On Windows

Python -m venv env
.\env\Scripts\activate.bat
Pip install -r requirements.txt

Pip will install all the required packages, and you should be able to start the application:

python main.py