Skip to content

Instantly share code, notes, and snippets.

@gmic
Created April 18, 2016 12:54
Show Gist options
  • Save gmic/fd9bcd4991923a5df839cb74eac91519 to your computer and use it in GitHub Desktop.
Save gmic/fd9bcd4991923a5df839cb74eac91519 to your computer and use it in GitHub Desktop.
Add jython as virtualenv on Mac
# Add jython as virtualenv on Mac
brew install jython
virtualenv -p /usr/local/bin/jython jython-env --no-setuptools
. ./jython-env/bin/activate
wget https://bootstrap.pypa.io/ez_setup.py
python ez_setup.py --insecure
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
deactivate
. ./jython-env/bin/activate
jython --version
pip --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment