首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >ModuleNotFoundError:没有名为“libtorrent”的模块

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

Stack Overflow用户
提问于 2021-02-25 11:53:19
回答 3查看 11.8K关注 0票数 16

我尝试在google colabratory中运行以下代码:

代码语言:javascript
复制
!apt install python3-libtorrent

import libtorrent as lt
ses = lt.session()
ses.listen_on(6881, 6891)
downloads = []

我能够install python3-libtorrent。但是我无法导入libtorrent。它显示的是ModuleNotFoundError: No module named 'libtorrent'。它显示第二个代码是错误的,即"import libtorrent as lt“,任何建议都将不胜感激。

EN

回答 3

Stack Overflow用户

发布于 2021-02-25 18:17:04

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

代码语言:javascript
复制
   !python -m pip install --upgrade pip setuptools wheel
   !python -m pip install lbry-libtorrent
票数 23
EN

Stack Overflow用户

发布于 2021-03-02 10:24:24

代码语言:javascript
复制
!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安装--升级pip setuptools轮

票数 2
EN

Stack Overflow用户

发布于 2021-03-01 19:58:01

代码语言:javascript
复制
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
票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/66362159

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档