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

2024-05-16 11:45:48 发布

您现在位置:Python中文网/ 问答频道 /正文

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

!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” 如有任何建议,将不胜感激


Tags: install代码importltonsessiondownloadsas
3条回答
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

将这两行粘贴到第一行之前

   !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安装升级pip setuptools轮子

相关问题 更多 >