进口libtorrent不工作

时间:2013-05-30 00:10:45

标签: python homebrew libtorrent

我在带有brew的mac上安装了libtorrent-rasterbar。安装完成后,我使用命令检查它是否安装良好:

brew install libtorrent-rasterbar

我得到: 警告:已安装libtorrent-rasterbar-0.16.10

所以安装看起来没问题。

如果我去python并输入“import libtorrent”,则会收到错误消息。 如果我输入:

>>>help('modules')

我在列表中看不到libtorrent。

我做错了什么?

1 个答案:

答案 0 :(得分:0)

Brew与Python无关。它只会安装系统库。如果要为Python安装库/模块,则应使用pip(推荐)或easy_install。

我找不到非常好的Python对libtorrent的支持,尽管对PyTorrent等其他torrent库有很大的支持。

如果您必须使用libtorrent-rasterbar,那么有关于如何在Super User

上执行此操作的精彩教程