I used pip install -r pip_list.txt
successfully.
# setup.py
from setuptools import setup
setup(
name='test',
version='0.1',
py_modules=['test'],
install_requires=[
... # Same as pip_list.txt
],
entry_points='''
[console_scripts]
test=test:cli
''',
)
run python setup.py install
failed.
error: idna 3.1 is installed but idna<3,>=2.5 is required by {'requests'}
pip.conf
[global]
index_url = https://.../prod/+simple/
[search]
index = https://.../prod/
setup.cfg
[easy_install]
index_url = https://.../prod/+simple/
I did not find the [search] option in setup.cfg.Is the above error related to this?
question from:
https://stackoverflow.com/questions/65870462/pip-install-succeeded-but-setup-install-failed 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…