Poethy安装失败,原因是EnvCommandError:查找版本2020.12.21.3lambda,为什么?

2024-09-30 22:24:20 发布

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

诗歌不能完成任何{}或{}而不抛出一个{}与无法找到{}的{}有关

它寻找版本“2020.12.21.3-lambda”,我不明白为什么它没有像其他依赖项一样从远程源加载具有正常版本的依赖项

$ poetry update
Updating dependencies
Resolving dependencies... (54.1s)

Writing lock file

Package operations: 59 installs, 0 updates, 0 removals

  • Installing soupsieve (2020.12.21.3-lambda): Failed

  EnvCommandError

  Command ['/home/git/my-project/.venv/bin/pip', 'install', '--no-deps', 'file:///home/Library/Caches/pypoetry/artifacts/22/36/ca/c8aae41f80011be881aa337cc80abc25ffd8542471c325e4410afa86c8/authorities-deployer-2020.12.21.3-lambda.zip'] errored with the following return code 1, and output: 
 Looking in indexes: ... # censored proxy
  Processing /home/Library/Caches/pypoetry/artifacts/22/36/ca/c8aae41f80011be881aa337cc80abc25ffd8542471c325e4410afa86c8/authorities-deployer-2020.12.21.3-lambda.zip
      ERROR: Command errored out with exit status 1:
       command: /home/git/my-package/my-package/.venv/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/q6/xjd92kc90zsds149_rx08cy40000gp/T/pip-req-build-40kngare/setup.py'"'"'; __file__='"'"'/private/var/folders/q6/xjd92kc90zsds149_rx08cy40000gp/T/pip-req-build-40kngare/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/q6/xjd92kc90zsds149_rx08cy40000gp/T/pip-pip-egg-info-02b8jxuf
           cwd: /private/var/folders/q6/xjd92kc90zsds149_rx08cy40000gp/T/pip-req-build-40kngare/
      Complete output (5 lines):
      Traceback (most recent call last):
        File "<string>", line 1, in <module>
        File "/usr/local/Cellar/python@3.9/3.9.0_5/Frameworks/Python.framework/Versions/3.9/lib/python3.9/tokenize.py", line 392, in open
          buffer = _builtin_open(filename, 'rb')
      FileNotFoundError: [Errno 2] No such file or directory: '/private/var/folders/q6/xjd92kc90zsds149_rx08cy40000gp/T/pip-req-build-40kngare/setup.py'
      ----------------------------------------
  ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  WARNING: You are using pip version 20.3.1; however, version 20.3.3 is available.
  You should consider upgrading via the '/home/git/my-package/my-package/.venv/bin/python -m pip install --upgrade pip' command.
  

  at ~/.poetry/lib/poetry/utils/env.py:1074 in _run
      1070│                 output = subprocess.check_output(
      1071│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1072│                 )
      1073│         except CalledProcessError as e:
    → 1074│             raise EnvCommandError(e, input=input_)
      1075│ 
      1076│         return decode(output)
      1077│ 
      1078│     def execute(self, bin, *args, **kwargs):

这个软件包已经运行了一段时间了。我不记得在pyproject.toml中更改了什么我试着检查一下pyproject.toml的旧版本,看看是否有什么意外的变化。同样的结果

我还尝试删除.venv/诗歌创建并重新创建它。同样的结果

我不知道soupsieve作为一种依赖关系将走向何方。它在诗歌创造的环境中使用朴素的老点子安装得恰到好处

cd project/
poetry shell
pip install soupsieve # Installs 2.1 without a problem

Tags: piplambdapyhomeoutputpoetryvenvvar
2条回答

快速修复

因此,根本问题与poetry无关,但我至少能够通过显式地添加具有特定版本的子依赖项来解除对此问题的阻碍

pip add soupsieve==2.1

根本问题

真正的问题是,我们的系统通过一个被坏元数据毒害的私有工件存储库代理所有东西:它包含名为soupsieve的东西,而实际上并不是soupsieve

一旦我们移除了这些东西,poetry又恢复了正常工作

我有同样的错误,因为出于某种原因poetry install总是无法在%APPDATA%中创建虚拟环境路径。解决方案是将venv移动到本地项目根目录

poetry config virtualenvs.in-project true
poetry env remove python
poetry install

相关问题 更多 >