Skip to content

Instantly share code, notes, and snippets.

@mwcraig
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mwcraig/11239249 to your computer and use it in GitHub Desktop.
Save mwcraig/11239249 to your computer and use it in GitHub Desktop.
Really hack-y install for vpython on anaconda
# make a new environment...
conda create -n vpy2 anaconda
# activate it
source activate vpy2
# update setuptools and pip
conda update pip
# install fonttools and ttfquery
pip install fonttools ttfquery
# install polygon -- I grabbed it from https://bitbucket.org/jraedler/polygon2/downloads/Polygon2-2.0.6.zip
wget https://bitbucket.org/jraedler/polygon2/downloads/Polygon2-2.0.6.zip
# after downloading, unpack, change into the Polygon2-2.0.6 directory and
# python setup.py install
unzip Polygon2-2.0.6.zip
cd Polygon2-2.0.6
python setup.py install
cd ..
# will make a conda package for this Thursday...
# get my boost package
curl -o boost-1.55.0-0.tar.bz2 https://dl.dropboxusercontent.com/u/330396/boost-1.55.0-0.tar.bz2
# install it
conda install boost-1.55.0-0.tar.bz2
# install vpython (this will automatically install wxpython also)
conda install --channel mwcraig vpython6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment