Python: Difference between revisions

From Bitpost wiki
No edit summary
No edit summary
Line 7: Line 7:
  source my_pyton/bin/activate
  source my_pyton/bin/activate
  pip install --upgrade pip
  pip install --upgrade pip
Here are the things I had to install to get my work env going:
sudo apt install libxml2-dev

Revision as of 15:18, 27 July 2017

Installation on Ubuntu

Virtual environments are great. Best to use them right out of the gate, as Ubuntu apparently has hacked up their version.

sudo apt update
sudo apt install virtualenv
virtualenv my_python
source my_pyton/bin/activate
pip install --upgrade pip

Here are the things I had to install to get my work env going:

sudo apt install libxml2-dev