我正在尝试使用此模块SimpleTorrentStreaming
来使用 python 流式传输种子但是当我尝试
Python 2.7.6 (default, Jun 22 2015, 17:58:13)
[GCC 4.8.2] on linux2
>>> from SimpleTorrentStreaming import SimpleTorrentStreaming
我收到这个错误
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/SimpleTorrentStreaming/SimpleTorrentStreaming.py", line 7, in <module>
from futures import ThreadPoolExecutor
ImportError: No module named futures
这告诉我安装futures
模块,我做到了:
$ pip freeze
....
futures==3.0.3
....
但是我仍然遇到同样的错误。我确实需要让它工作,因为这是唯一用于 torrent 流的 python 库。