<p>pipは、pyproject.tomlの[build-system]にあるPEP 508URLをファイルパスとして解析しようとします。</p>

作成日 2019年04月13日  ·  5コメント  ·  ソース: pypa/pip

環境

  • pipバージョン:toxは教えてくれません:fearful:
  • Pythonバージョン:3.7
  • OS:Fedora GNU / Linux

説明
これは、「wobblui @https: //github.com/wobblui/wobblui/archive/master.zip 」を指定しようとしたときに発生することです。

  Requirement 'wobblui @ https://github.com/wobblui/wobblui/archive/master.zip' looks like a filename, but the file does not exist
  Processing ./wobblui @ https:/github.com/wobblui/wobblui/archive/master.zip
  Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory: '/home/jonas/Develop/myproj/wobblui @ https:/github.com/wobblui/wobblui/archive/master.zip'

予想される行動
seutp_requiresでも機能し、これが推奨される代替品であるため、機能しますね。

再現する方法
このpyproject.tomlを使用します:

[build-system]
requires = ["setuptools", "wheel", "wobblui @ https://github.com/wobblui/wobblui/archive/master.zip"]
build-backend = "setuptools.build_meta"

出力

  Requirement 'wobblui @ https://github.com/wobblui/wobblui/archive/master.zip' looks like a filename, but the file does not exist
  Processing ./wobblui @ https:/github.com/wobblui/wobblui/archive/master.zip
  Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory: '/home/jonas/Develop/myproj/wobblui @ https:/github.com/wobblui/wobblui/archive/master.zip'
duplicate auto-locked awaiting response bug

最も参考になるコメント

その価値については、その問題に関連するPR(#6203)からのpipは、ここで提供されているpyproject.tomlを問題なくインストールできました。

全てのコメント5件

これは#6202の複製だと思いますか?

うーん、 requirements.txtについて言及しているようで、内部で同じメカニズムを使用しているかどうかはわかりません。 同じものを使用している場合は、おそらく重複しています:+1:

同じメカニズムを使用していることは間違いありませんが、修正されるまで、これを開いたままにしておくことは問題ないと思います。

その価値については、その問題に関連するPR(#6203)からのpipは、ここで提供されているpyproject.tomlを問題なくインストールできました。

6203がマージされ、マスターに対する修正を確認できました。


fixed.sh

#!/bin/sh
cd "$(mktemp -d)"
python -m venv .venv
. .venv/bin/activate

set -ex
pip install --upgrade git+https://github.com/pypa/pip.git
cat <<EOF > pyproject.toml
[build-system]
requires = ["setuptools", "wheel", "wobblui @ https://github.com/wobblui/wobblui/archive/master.zip"]
build-backend = "setuptools.build_meta"
EOF
echo "from setuptools import setup; setup(name='hello')" > setup.py
pip install .


出力

+ pip install --upgrade git+https://github.com/pypa/pip.git
Collecting git+https://github.com/pypa/pip.git
  Cloning https://github.com/pypa/pip.git to /tmp/user/1000/pip-req-build-vj85ywtn
  Installing build dependencies ... done
Installing collected packages: pip
  Found existing installation: pip 18.1
    Uninstalling pip-18.1:
      Successfully uninstalled pip-18.1
  Running setup.py install for pip ... done
Successfully installed pip-19.3.dev0
+ cat
+ echo from setuptools import setup; setup(name='hello')
+ pip install .
Processing /tmp/user/1000/tmp.xAtiVhhzb7
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
Building wheels for collected packages: hello
  Building wheel for hello (PEP 517) ... done
  Created wheel for hello: filename=hello-0.0.0-cp37-none-any.whl size=971 sha256=777a97a967e962ad9ae4d085b5eb369b8ead6340b4c1faae4cc42707a170bd1b
  Stored in directory: /tmp/user/1000/pip-ephem-wheel-cache-rvibo0ng/wheels/15/31/64/f6d8e3210b2f9a59fb104fc18d2651440f5e6d328adeca6341
Successfully built hello
Installing collected packages: hello
Successfully installed hello-0.0.0

そのため、この問題を重複してクローズします。 何か違うものがあれば教えてください!

このページは役に立ちましたか?
0 / 5 - 0 評価