how to create python enviroment only with the packages needed code example
Example 1: how to make a virtual environment in python
py -m venv env
Example 2: how to use virtual environment python
source env/bin/activate
py -m venv env
source env/bin/activate