How to install python package with a different name using PIP

前端 未结 10 2068
忘了有多久
忘了有多久 2020-12-09 07:56

When installing a new python package with PIP, can I change the package name because there is another package with the same name?

Or, how can I change the existing p

10条回答
  •  悲哀的现实
    2020-12-09 08:20

    This is not possible with the pip command line tool. All of the packages on PyPI have unique names. Packages often require and depend on each other, and assume the name will not change.

提交回复
热议问题