我尝试在google colabratory中运行以下代码:
!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“,任何建议都将不胜感激。
发布于 2021-02-25 18:17:04
在第一行之前粘贴这两行。
!python -m pip install --upgrade pip setuptools wheel
!python -m pip install lbry-libtorrent发布于 2021-03-02 10:24:24
!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轮
发布于 2021-03-01 19:58:01
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.4https://stackoverflow.com/questions/66362159
复制相似问题