Last active
May 3, 2016 09:01
-
-
Save LoadLow/11dfc254170884811e85d0fe2d57708a to your computer and use it in GitHub Desktop.
Setup & Fix rubypython ubuntu/debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install ruby ruby-dev python2.7 python2.7-dev | |
sudo gem install ffi | |
sudo gem install rubypython | |
cd /usr/lib | |
# For ubuntu 14.04(AMD64/x86_64) | |
sudo ln -s /usr/lib/python2.7/config-x86_64-linux-gnu/libpython2.7.so | |
sudo ln -s /usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0 | |
# For ubuntu 14.04(x86) | |
sudo ln -s /usr/lib/python2.7/config-i386-linux-gnu/libpython2.7.so | |
sudo ln -s /usr/lib/i386-linux-gnu/libpython2.7.so.1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment