The following steps should help setting up a working python environment:
- Install the python package virtual env with 'pip install virtualenv'
- Create virtual environment with 'py -m venv .venv'
- Activate virtual environment with 'source venv/bin/activate' (Linux) or '..venv\Scripts\activate' (Windows)
- Update your pip with 'py -m pip install --upgrade pip'
- Install requirements in .venv with 'pip install -r requirements.txt'
- Open the 'test_setup.ipynb' file in your editor and run the code cells to test your system setup (see https://code.visualstudio.com/docs/datascience/jupyter-notebooks)