Setup Python Env
There are two steps for setting your python virtual environment:
- Create and activate the virtual environment
1 | # .venv is the fold name and you can change it |
Note:
Using the following command dactivate to deactive the virtual environment
Install and uninstall the packages like normal
1
2
3pip3 install {YourPackages}
pip3 uninstall {YourPackages}
This blog is under a CC BY-NC-SA 3.0 Unported License
Link to this article: https://younggod.netlify.app/2021/05/22/practice/python/setupEnv/