- pipenv
- (Optional) jupyter
- (Optional) VSCode
Run pipenv install
to install all the required dependencies
Run main.py
using python src/main.py
. Keep in mind that you have to be in this project's root while executing the command.
Paste the following to you launch.json
file:
...
"configurations": [
{
"name": "Python: Main",
"type": "python",
"request": "launch",
"program": "src/main.py",
"console": "integratedTerminal"
}
]
...