Skip to content

Instantly share code, notes, and snippets.

@nfaggian
Last active January 4, 2016 13:19
Show Gist options
  • Save nfaggian/8627493 to your computer and use it in GitHub Desktop.
Save nfaggian/8627493 to your computer and use it in GitHub Desktop.
Notes on getting packages working in Python 3

Fabric

Need to install paramiko port and context2lib then fabric python 3.3 port:

pip install git+https://github.com/scottkmaxwell/paramiko.git@py3-support-without-py25
pip install contextlib2
pip install git+https://github.com/pashinin/fabric.git@p33

Reference to fabric issue: fabric/fabric#1050

Cartopy

Need to install most recent version of pyproj, then ported version of cartopy.

svn checkout http://pyproj.googlecode.com/svn/trunk/ pyproj
cd pyproj; python setup.py build install
pip install git+https://github.com/esc24/cartopy.git@three_osx_new

Reference to pull request: SciTools/cartopy#308

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment