Skip to content

Instantly share code, notes, and snippets.

@sassman
Created February 9, 2014 15:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sassman/8901056 to your computer and use it in GitHub Desktop.
Save sassman/8901056 to your computer and use it in GitHub Desktop.
install setuptools for jython 2.7 manually
#!/bin/bash
set -e
cd /tmp
wget https://pypi.python.org/packages/source/s/setuptools/setuptools-2.2.tar.gz
tar -xzf setuptools-2.2.tar.gz
cd setuptools-2.2
sudo jython27 setup.py install --prefix=/opt/jython27
@pitchblack408
Copy link

Do you know how to install setuptools with jython in windows7?

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