- Download and install VS Code
- Install VS Code Python Extension
- open terminal and navigate to the folder
python3 --versionPython 3- creates my env
python3 -m venv myenv - activate my env
source myenv/bin/activate pip3 --versionpip3 install pandaspip3 install numpypip3 install matplotlib
Testing
- Open terminal and navigate to
setupfolder - activate my env
source myenv/bin/activate - run
python3 test1.pyto test that matplotlib and numpy works correctly. As a result you should see the chart. 
- run
python3 test2.pyto test pandas and reading from file. As a result you should see this table in your terminal. 
- Download and install VS Code. You can find it in Microsoft Store or download if from the internet https://code.visualstudio.com/download

- Install VS Code Python Extension

- Download project from github https://github.com/funcodingworkshop/data-analysis-in-python-workshop.git and extract it

- Open project/folder in VS Code.

- Open terminal in VS Code. Terminal -> New Terminal
python --versionPython 3pip --version
- create my env
python -m venv myenv - Run this script
.\myenv\Scripts\Activate.ps1and restart VS Code pip install pandaspip install numpypip install matplotlib
Testing
- run
python test1.pyto test that matplotlib and numpy works correctly. As a result you should see the chart. 
- run
python3 test2.pyto test pandas and reading from file. As a result you should see this table in your terminal. 
Alternativly you can use requirements files from the root folder to install dependencies
pip3 install -r requirements.txt