无法在Linux上使用pip安装Ropper

2024-05-19 21:38:28 发布

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

我正试图写一些脚本,需要罗珀。(仅通过pip安装) 我怎样才能解决这个问题?在

我正在尝试在linux上安装它,尝试升级setuptools,安装旧版本,然后按照这个,只有一个主题,我找到了: the link!在

以下是错误消息:

$ pip install ropper

DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
Collecting ropper
  Using cached https://files.pythonhosted.org/packages/94/b1/922dfab5083ff439ce70358c7f3e49185c54e6ea6ee2bb7cd292e63eac06/ropper-1.12.1.tar.gz
Collecting filebytes>=0.9.18 (from ropper)
  Using cached https://files.pythonhosted.org/packages/0b/3a/9fc0c62bd74583137a8bbc3c8020d6a8234b9cf8bc1e99fe929688b19093/filebytes-0.9.20.tar.gz
    ERROR: Complete output from command python setup.py egg_info:
    ERROR: Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-d44HeD/filebytes/setup.py", line 3, in <module>
        from pathlib import Path
    ImportError: No module named pathlib
    ----------------------------------------
ERROR: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-d44HeD/filebytes/


Tags: installpipoftheinfrompysetup
1条回答
网友
1楼 · 发布于 2024-05-19 21:38:28

filebytes==0.9.20版本与python2不兼容;包维护人员已经修复了这个问题,但是新版本还没有上传到PyPI。暂时将filebytes限制为以前的版本:

$ pip install "filebytes<0.9.20" ropper

如果您想更新下一个版本(9.0),请执行以下操作:

^{pr2}$

相关问题 更多 >