Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
488 views
in Technique[技术] by (71.8m points)

setuptools - pip install succeeded, but setup install failed

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...