Last active
March 22, 2022 05:54
-
-
Save jerry-maheswara-github/e56b283f90eb2ba7d5873229b924ec05 to your computer and use it in GitHub Desktop.
This file contains 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
wget http://archive.apache.org/dist/thrift/0.8.0/thrift-0.8.0.tar.gz | |
tar zxf thrift-0.8.0.tar.gz | |
pushd thrift-0.8.0 | |
wget https://issues.apache.org/jira/secure/attachment/12511532/thrift-1465_1.patch | |
patch -p0 < thrift-1465_1.patch | |
./configure --without-cpp --without-csharp --without-java --without-erlang --without-python --without-perl --without-php --without-php_extension --without-ruby --without-haskell | |
make && make install | |
pushd lib/py | |
sudo python setup.py install | |
popd | |
echo "Done." | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment