Skip to content

Instantly share code, notes, and snippets.

View Tsuk1ko's full-sized avatar
🕊️
Pigeon - Verified by GitHub

神代綺凛 Tsuk1ko

🕊️
Pigeon - Verified by GitHub
View GitHub Profile
@Tsuk1ko
Tsuk1ko / centos7-install-python-libtorrent.sh
Last active April 4, 2019 15:19 — forked from cloverstd/install.sh
Install libtorrent and python binds on centos 7
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_0_11/libtorrent-rasterbar-1.0.11.tar.gz
tar zxvf libtorrent-rasterbar-1.0.11.tar.gz
cd libtorrent-rasterbar-1.0.11
./configure --disable-debug --with-boost-libdir=/usr/lib64 --disable-encryption --enable-python-binding
make && make install
cd bindings/python
python setup.py build
python setup.py install