安装环境及依赖:
1 2 3 4 | yum -y groupinstall "Development Tools" yum -y install boost-devel openssl-devel yum -y install python-devel python-pip GeoIP-devel gettext intltool pip install setuptools twisted pyopenssl simplejson pyxdg chardet geoip setproctitle pillow mako service_identity |
编译安装libtorrent:
1 2 3 4 5 6 7 8 9 | wget https: //github .com /arvidn/libtorrent/releases/download/libtorrent-1_1_9/libtorrent-rasterbar-1 .1.9. tar .gz tar -zxf libtorrent-rasterbar-1.1.9. tar .gz cd libtorrent-rasterbar-1.1.9 . /configure --prefix= /usr/local/libtorrent -- enable -python-binding --with-libiconv make && make install echo '/usr/local/libtorrent/lib' > /etc/ld .so.conf.d /libtorrent-x86_64 .conf ldconfig export PYTHONPATH=$PYTHONPATH: /usr/local/libtorrent/lib64/python2 .7 /site-packages/ echo 'export PYTHONPATH=$PYTHONPATH:/usr/local/libtorrent/lib64/python2.7/site-packages/' >> ~/.bashrc |
查看python能否加载libtorrent模块,成功返回版本号。
1 | python -c "import libtorrent; print libtorrent.version" |
安装deluge:
1 2 3 4 5 6 7 8 9 10 | wget http: //download .deluge-torrent.org /source/deluge-1 .3.15. tar .gz tar -xzvf deluge-1.3.15. tar .gz cd deluge-1.3.15 mkdir -p /usr/local/deluge/lib/python2 .7 /site-packages/ export PYTHONPATH=$PYTHONPATH: /usr/local/deluge/lib/python2 .7 /site-packages/ echo 'export PYTHONPATH=$PYTHONPATH:/usr/local/deluge/lib/python2.7/site-packages/' >> ~/.bashrc python setup.py build python setup.py install --prefix /usr/local/deluge export PATH=$PATH: /usr/local/deluge/bin/ echo 'export PATH=$PATH:/usr/local/deluge/bin/' >> ~/.bashrc |
参考:
https://dev.deluge-torrent.org/wiki/Building/libtorrent
https://dev.deluge-torrent.org/wiki/Installing/Source
标签:deluge, libtorrent, pt