【发布时间】:2021-08-08 04:23:18
【问题描述】:
我正在尝试在离线环境中从源代码安装 SQLACodegen 包及其依赖项(inflect、setuptools-scm)。具体来说,我在 Red Hat Enterprise Linux 7 系统上使用 Python 3.8 安装了 Anaconda 2020.07。
我将 Anaconda bin 目录附加到 PATH,并使用 python -m pip install whatever.tar.gz 进行安装。是的,我知道像这样使用pip 而不是conda 是一种罪过。碰巧这是安装上游包时更简单的方法,而且我在安装许多其他包之前从来没有遇到过问题。
问题是 pip 正在尝试上网下载并安装setuptools。奇怪的是 setuptools 已经安装并且满足包的版本要求。即使我指定了诸如--no-index -f /path/to/packages 之类的 pip 标志,它仍然无法检测到已安装的 setuptools 并尝试从某个地方拉取它。
示例输出:
[root@myserver stuff]# ls
inflect-4.1.0.tar.gz setuptools_scm-4.1.2.tar.gz sqlacodegen-2.1.0.tar.gz
[root@myserver stuff]# which python
/usr/local/anaconda-2020.07/bin/python
[root@myserver stuff]# python -V
Python 3.8.3
[root@myserver stuff]# python -m pip list | grep setuptools
setuptools 49.2.0.post20200714
[root@myserver stuff]# python -m pip install --no-index -f . sqlacodegen-2.1.0.tar.gz
Looking in links: .
Processing ./sqlacodegen-2.1.0.tar.gz
Installing build dependencies ... error
ERROR: Command errored out with exit status 1:
command: /usr/local/anaconda-2020.07/bin/python /usr/local/anaconda-2020.07/lib/python3.8/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env/r61p50oe/overlay --no-warn-script-location --no-binary :none: --only-binary :none: --no-index --find-links . -- 'setuptools >= 36.2.7' wheel 'setuptools_scm >= 1.7.0'
cwd: None
Complete output (3 lines):
Looking in links: .
ERROR: Could not find a version that satisfies the requirement setuptools>=36.2.7 (from versions: none)
ERROR: No matching distribution found for setuptools>=36.2.7
我感觉--ignore-installed 标志可能是问题的一部分,但我不知道如何覆盖它,它看起来像 pip 对许多选项本身的影响。有没有人遇到过类似的情况并解决了?
【问题讨论】:
标签: python pip setuptools