The dataset used for this exercise: https://www.kaggle.com/competitions/store-sales-time-series-forecasting/data
This repo contains a requirements.txt file with a list of all the packages and dependencies you will need. Before you install the virtual environment.
-
Step_1:pyenv local 3.11.3 python -m venv .venv source .venv/bin/activate pip install --upgrade pip pip install -r requirements.txt
-
Step_1:Install the virtual environment and the required packages by following commands.For
PowerShellCLI :pyenv local 3.11.3 python -m venv .venv .venv\Scripts\Activate.ps1 python -m pip install --upgrade pip pip install -r requirements.txt
For
Git-BashCLI :pyenv local 3.11.3 python -m venv .venv source .venv/Scripts/activate python -m pip install --upgrade pip pip install -r requirements.txt