The python version in my OS:
python3 --version
Python 3.9.2
Create a folder with venv
.
python3 -m venv myproject
Now i can activate the virtual environment.
cd myproject
~/myproject$ sh bin/activate
I can't deactivate it,no deactivate script in the myproject.
tree -r myproject | rg deactivate
#Nothing as output
deactivate
bash: deactivate: command not found
How can deactivate the virtual environment then?