gpt4 book ai didi

python - 查找pip包: pkg_resources specify custom target directory

转载 作者:行者123 更新时间:2023-12-01 09:26:06 32 4
gpt4 key购买 nike

有没有办法为 pkg_resources 指定自定义目标目录来列出 pip 包?我希望能够通过已使用自定义目标的 pkg_resources.require() 等使用 --target 查找已安装在自定义目标目录中的软件包目录。

我不想使用:

  • setuptools.find_packages 因为它仅使用 sys.path
  • setuptools.PEP420PackageFinder.find
  • 通过遍历目录名称和文件来查找包也没有帮助,因为我需要一种更通用的方法来查找包 namespace 。

非常感谢您对此提供的任何帮助。

最佳答案

更新

Python 3.8 引入 importlib.metadata ,用于查询取代 pkg_resources 的已安装软件包的模块。用法示例:

In [1]: from importlib import metadata
In [2]: dists = metadata.distributions(path=['my_target_dir'])
In [3]: list(f"{d.metadata['Name']}=={d.metadata['Version']}" for d in dists)
Out[22]:
['pip==20.0.2',
'ipython==7.13.0',
...
]

对于 Python 2.7 和 Python >=3.5,有一个名为 importlib-metadata 的向后移植。 :

$ pip install importlib-metadata

原始答案

pkg_resources.find_distributions 函数(记录在 Getting or Creating Distributions 下)接受目标目录来搜索包。示例:

$ ls -l my_target_dir/
total 36
drwxr-xr-x 2 hoefling hoefling 4096 May 17 13:29 __pycache__
-rw-r--r-- 1 hoefling hoefling 126 May 17 13:29 easy_install.py
drwxr-xr-x 5 hoefling hoefling 4096 May 17 13:29 pip
drwxr-xr-x 2 hoefling hoefling 4096 May 17 13:29 pip-10.0.1.dist-info
drwxr-xr-x 5 hoefling hoefling 4096 May 17 13:29 pkg_resources
drwxr-xr-x 6 hoefling hoefling 4096 May 17 13:29 setuptools
drwxr-xr-x 2 hoefling hoefling 4096 May 17 13:29 setuptools-39.1.0.dist-info
drwxr-xr-x 5 hoefling hoefling 4096 May 17 13:29 wheel
drwxr-xr-x 2 hoefling hoefling 4096 May 17 13:29 wheel-0.31.1.dist-info

使用 pkg_resources.find_distributions 扫描 my_target_dir 会产生:

In [2]: list(pkg_resources.find_distributions('my_target_dir'))
Out[2]:
[wheel 0.31.1 (/data/gentoo64/tmp/so-50380624/my_target_dir),
setuptools 39.1.0 (/data/gentoo64/tmp/so-50380624/my_target_dir),
pip 10.0.1 (/data/gentoo64/tmp/so-50380624/my_target_dir)]

关于python - 查找pip包: pkg_resources specify custom target directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50380624/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com