pip config list
pip config set global.index-url https://pypi.org/simple
pip config unset global.index-url
python -m venv --without-pip venv
When running python, below error is shown: This program is blocked by group policy. For more information, contact your system administrator
Solution: set PYVENV_LAUNCHER==venv\Scripts: this infact doens't work
https://docs.python.org/3/library/venv.html
Last updated 2 years ago