ModuleNotFoundError: 没有名为“libtorrent”的模块

问题描述

我尝试在谷歌合作中运行以下代码

$ ./bin/readsetsofsix dat/setsofsix.txt

Set 1

[3,3,19] = 25
[16,8,9] = 33

Set 2

[15,1,14] = 30
[12,13,1] = 26

Set 3

[7,9] = 24
[6,6,5] = 17

我能够!apt install python3-libtorrent import libtorrent as lt ses = lt.session() ses.listen_on(6881,6891) downloads = [] 。但是我无法导入 libtorrent。它显示install python3-libtorrent。它显示第二个代码错误的,即“ModuleNotFoundError: No module named 'libtorrent'” 任何建议将不胜感激

解决方法

将这两行粘贴在第一行之前。

   !python -m pip install --upgrade pip setuptools wheel
   !python -m pip install lbry-libtorrent
,
!python -m pip install lbry-libtorrent
!apt install python3-libtorrent
 
import libtorrent as lt
 
ses = lt.session()
ses.listen_on(6881,6891)
downloads = []

不需要;) !python -m pip install --upgrade pip setuptools wheel

,
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3-libtorrent is already the newest version (1.1.5-1build1).
0 upgraded,0 newly installed,0 to remove and 13 not upgraded.
Collecting pip
  Downloading https://files.pythonhosted.org/packages/fe/ef/60d7ba03b5c442309ef42e7d69959f73aacccd0d86008362a681c4698e83/pip-21.0.1-py3-none-any.whl (1.5MB)
     |████████████████████████████████| 1.5MB 6.1MB/s 
Collecting setuptools
  Downloading https://files.pythonhosted.org/packages/70/06/849cc805ac6332210083f2114a95b22ee252ce81ed4e1be4f1d2b87c9108/setuptools-54.0.0-py3-none-any.whl (784kB)
     |████████████████████████████████| 788kB 40.8MB/s 
Requirement already up-to-date: wheel in /usr/local/lib/python3.7/dist-packages (0.36.2)
***`**ERROR: datascience 0.10.6 has requirement folium==0.2.1,but you'll have folium 0.8.3 which is incompatible.**`***
Installing collected packages: pip,setuptools
  Found existing installation: pip 19.3.1
    Uninstalling pip-19.3.1:
      Successfully uninstalled pip-19.3.1
  Found existing installation: setuptools 53.0.0
    Uninstalling setuptools-53.0.0:
      Successfully uninstalled setuptools-53.0.0
Successfully installed pip-21.0.1 setuptools-54.0.0
Collecting lbry-libtorrent
  Downloading lbry_libtorrent-1.2.4-py3-none-any.whl (2.4 MB)
     |████████████████████████████████| 2.4 MB 4.6 MB/s 
Installing collected packages: lbry-libtorrent
Successfully installed lbry-libtorrent-1.2.4