Pip doesn't install latest available version from pypi (argparse in this case)

前端 未结 2 1945
生来不讨喜
生来不讨喜 2020-12-31 03:30

The problem

I worked on some python projects lately and had lots of problems with pip not installing the latest versions of some requirements. I am on

2条回答
  •  借酒劲吻你
    2020-12-31 03:53

    Here's the command I used to install argparse using pip 1.5.4:

    pip install --allow-all-external argparse==1.2.1
    

提交回复
热议问题