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 $...")
 
 
(7 intermediate revisions by the same user not shown)
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
 +
. zenv/bin/activate
 +
 +
pip install opencv-python
 +
pip install scipy
 +
pip install trimesh
 +
pip install imageio tensorboardX pandas matplotlib
 +
pip install -r requirements.txt
 +
 +
deactivate
  
Afterwards, you should have the latest version of pip installed in your user site:
+
== python 2.7 ==
  
  pip 21.1.3 from $HOME/.local/lib/python3.9/site-packages (python 3.9)
+
  sudo apt-get install python2.7-dev
 +
  sudo apt install python-pip
 +
  pip2 install virtualenv  
 +
  python2.7 -m virtualenv zenv
 +
  . zenv/bin/activate

Latest revision as of 02:29, 4 November 2024

python3 -m pip install --user --upgrade pip
python3 -m pip --version
python3 -m venv zenv
. zenv/bin/activate
pip install opencv-python
pip install scipy
pip install trimesh
pip install imageio tensorboardX pandas matplotlib
pip install -r requirements.txt
deactivate

python 2.7

 sudo apt-get install python2.7-dev
 sudo apt install python-pip
 pip2 install virtualenv  
 python2.7 -m virtualenv zenv
 . zenv/bin/activate