- pyenv
- python==3.11.3
- matplotlib==3.7.1
- seaborn==0.12.2
- numpy==1.24.3
- pandas==2.0.1
- scikit-learn==1.2.2
- missingno==0.5.2
- lazypredict==0.2.13
- xxxToBeAdded
This repo contains a requirements.txt file with a list of all the packages and dependencies you will need.
Install the virtual environment and the required packages by following commands:
```
pyenv local 3.11.3
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
```
-
Step_1:
Update Chocolatey and install Node by following commands:choco upgrade chocolatey choco install nodejs
-
Step_2:
Install the virtual environment and the required packages by following commands.For
PowerShell
CLI :pyenv local 3.11.3 python -m venv .venv .venv\Scripts\Activate.ps1 pip install --upgrade pip pip install -r requirements.txt
For
Git-Bash
CLI :pyenv local 3.11.3 python -m venv .venv source .venv/Scripts/activate pip install --upgrade pip pip install -r requirements.txt
Note:
If you encounter an error when trying to run pip install --upgrade pip
, try using the following command:
python.exe -m pip install --upgrade pip