Skip to content

Instantly share code, notes, and snippets.

View fastesol's full-sized avatar
🙂
Looking for an opportunity

Muaaz Khalid fastesol

🙂
Looking for an opportunity
View GitHub Profile
@fastesol
fastesol / libtorrent_install_centos_7.x.sh
Last active August 6, 2017 18:52
LibTorrent Rasterbar 1.1.4 Install shell script
yum install -y boost boost-devel
yum install -y make gcc gcc-c++ kernel-devel python-devel
wget https://github.com/arvidn/libtorrent/releases/download/libtorrent-1_1_4/libtorrent-rasterbar-1.1.4.tar.gz
tar zxvf libtorrent-rasterbar-1.1.4.tar.gz
cd libtorrent-rasterbar-1.1.4
./configure --disable-debug --with-boost-libdir=/usr/lib64 --disable-encryption --enable-python-binding
make && make install
export LD_LIBRARY_PATH=/usr/local/lib/
cd bindings/python
python setup.py build