Difference between revisions of "Python"

From Wasya Wiki
Jump to: navigation, search
(Created page with " python3 -m pip install --user --upgrade pip python3 -m pip --version Afterwards, you should have the latest version of pip installed in your user site: pip 21.1.3 from $...")
 
Line 1: Line 1:
 +
 
  python3 -m pip install --user --upgrade pip
 
  python3 -m pip install --user --upgrade pip
 
 
  python3 -m pip --version
 
  python3 -m pip --version
 
+
python3 -m venv zenv
Afterwards, you should have the latest version of pip installed in your user site:
+
  . zenv/bin/activate
 
+
  pip 21.1.3 from $HOME/.local/lib/python3.9/site-packages (python 3.9)
+

Revision as of 22:58, 10 October 2022

python3 -m pip install --user --upgrade pip
python3 -m pip --version
python3 -m venv zenv
. zenv/bin/activate