|
Downloaded: BitTorrent-5.0.1.tar.gz
tar xzvf BitTorrent-5.0.1.tar.gz
cd BitTorrent-5.0.1
./bittorrent-tracker.py --port 6969 --dfile dstate
Then install according to README.txt, but the first step encountered such a problem, the error message is as follows:
Traceback (most recent call last):
File "./bittorrent-tracker.py", line 17, in <module>
from BitTorrent.translation import _
File "/usr/soft/BitTorrent-5.0.1/BitTorrent/__init__.py", line 49, in <module>
from BitTorrent.platform import get_temp_subdir, get_dot_dir, is_frozen_exe
File "/usr/soft/BitTorrent-5.0.1/BitTorrent/platform.py", line 120, in <module>
from BTL.defer import ThreadedDeferred
File "/usr/soft/BitTorrent-5.0.1/BTL/defer.py", line 15, in <module>
from twisted.internet import defer
ImportError: No module named twisted.internet
Like saying you can't import twisted.internet
How to solve it? |
|