- Create an environment
conda create --prefix ./venv_interview python=3.10 -y- Activate the environment
conda activate ./venv_interview- to use in ipynb file
pip install ipykernel
python -m ipykernel install --user --name venv_interview --display-name "Python(venv_interview)"- install requirements
pip install -r requirements.txtgit clone https://github.com/
git add .
git commit -m "readme updated"
git push origin main