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

Categories

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

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

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...