如何使用 PIP 安装具有不同名称的 python 包

How to install python package with a different name using PIP(如何使用 PIP 安装具有不同名称的 python 包)
本文介绍了如何使用 PIP 安装具有不同名称的 python 包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

使用 PIP 安装新的 python 包时,我可以更改包名,因为有另一个包同名吗?

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 package's name?

推荐答案

无法更改导入路径"(安装名称)通过指定 pip 的参数.所有其他选项都需要某种形式的更改包":

It's not possible to change "import path" (installed name) by specifying arguments to pip. All other options require some form of "changes to the package":

A.使用 pip install -e git+http://some_url#egg=some-name:这样即使两个包的导入路径相同,它们也会保存在不同的目录下(使用 #egg= 之后提供的一些名称).在此之后,您可以转到包的源目录(通常是 venv/src/some-name)并重命名一些文件夹以更改导入路径

A. Use pip install -e git+http://some_url#egg=some-name: that way even if both packages have the same import path, they will be saved under different directories (using some-name provided after #egg=). After this you can go to the source directories of packages (usually venv/src/some-name) and rename some folders to change import paths

B-C.Fork 存储库,进行更改,然后从该存储库安装包.或者您可以使用不同的名称在 PyPI 上发布您的包并按名称安装它

B-C. Fork the repository, make changes, then install the package from that repository. Or you can publish your package on PyPI using different name and install it by name

D.使用 pip download 将其中一个包放入您的项目中,然后根据需要重命名文件夹

D. use pip download to put one of the packages in your project, then rename folders as you like

这篇关于如何使用 PIP 安装具有不同名称的 python 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

python count duplicate in list(python在列表中计数重复)
drop_duplicates not working in pandas?(drop_duplicates 在 pandas 中不起作用?)
Get unique items from list of lists?(从列表列表中获取唯一项目?)
How to quot;select distinctquot; across multiple data frame columns in pandas?(如何“选择不同的?跨越 pandas 中的多个数据框列?)
Intersection of two lists, keeping duplicates in the first list(两个列表的交集,在第一个列表中保留重复项)
Detect duplicate MP3 files with different bitrates and/or different ID3 tags?(检测具有不同比特率和/或不同 ID3 标签的重复 MP3 文件?)