Upgrade package without upgrading dependencies using pip?

后端 未结 3 647
南笙
南笙 2020-12-08 06:04

I\'m using pip and virtualenv for my python application. I would like to upgrade to a new version of the application without touching the dependencies. When I use pip

3条回答
  •  醉梦人生
    2020-12-08 07:03

    I just tried on my virtualenv project and pip install -U --no-deps mypackage seems to work just fine. It just download mypackage and nothing else. What's your set up like?

提交回复
热议问题