Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Virtualenv and All His Friends

Virtualenv and All His Friends

These are slides from a GRPUG talk on environment setups.

Links to installers:
https://www.python.org/downloads
https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py

Bootstrap project:
https://github.com/dornerworks/arniepye

Jace Browning

August 18, 2014
Tweet

More Decks by Jace Browning

Other Decks in Programming

Transcript

  1. Python + pip In the installer from python.org, check the

    box to automatically update your system paths.
  2. Python + pip In the installer from python.org, check the

    box to automatically update your system paths.
  3. $  virtualenv  env   $  env/bin/pip  install  testpackage   $

     env/bin/python   >>>  import  testpackage   >>>  exit()