Skip to content

Instantly share code, notes, and snippets.

@jgupta
Forked from baoshan/install-pypy.sh
Last active October 20, 2016 05:41
Show Gist options
  • Save jgupta/b5513d728721c0a1b6ac to your computer and use it in GitHub Desktop.
Save jgupta/b5513d728721c0a1b6ac to your computer and use it in GitHub Desktop.
# https://github.com/squeaky-pl/portable-pypy
wget https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.4.1-linux_x86_64-portable.tar.bz2
tar -xf pypy-5.4.1-linux_x86_64-portable.tar.bz2
mv pypy-5.4.1-linux_x86_64-portable /opt
ln -s /opt/pypy-5.4.1-linux_x86_64-portable/bin/pypy /usr/local/bin/
ln -s /opt/pypy-5.4.1-linux_x86_64-portable/bin/virtualenv-pypy /usr/local/bin/
rm pypy-5.4.1-linux_x86_64-portable.tar.bz2
pypy --version
wget https://bootstrap.pypa.io/get-pip.py
pypy get-pip.py
rm get-pip.py
ln -s /opt/pypy-5.4.1-linux_x86_64-portable/bin/pip /usr/local/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment