- create new environment
conda create -p venv python=3.9 -y
- Activate your environment
conda activate venv/ --> cmd
source activate venv/ --> git bash
- Install requirements file
pip install -r requirements.txt
- Git commit
git add .
git commit -m "Comments for the add"
git push origin main