搜索
首页后端开发Python教程Python 的 sys.path 如何获取其初始值?

How does Python's `sys.path` get its initial values?

Python 的 sys.path 从哪里获取初始值?

Python 的 sys.path 的初始化涉及一个复杂的过程,旨在智能地确定导入模块最相关的路径。以下是详细的步骤:

1. Python 的位置确定

Python 通过解析任何符号链接并利用来自操作系统的信息来确定其物理位置。该值被分配给 sys.executable.

2。 sys.exec_prefix 和 sys.prefix 的初始化

如果 pyvenv.cfg 文件存在于包含 sys.executable 或上一级的目录中,则检查其内容。

  • Linux 和 Mac: 如果指定了 home 配置选项,它将取代 sys.executable 目录作为 sys.prefix 的初始值。
  • Windows: PYTHONHOME 环境变量优先。如果设置,它会设置 sys.prefix 和 sys.exec_prefix。但是,如果 pyvenv.cfg 文件包含 home 设置,它将覆盖 PYTHONHOME 值。

否则,sys.exec_prefix 和 sys.prefix 是通过从 sys.executable 的位置向后遍历或pyvenv.cfg 目录。此过程中使用的具体标志性文件是 lib/python/dyn-load 和 lib/python/os.py.

3。 Initial Population of sys.path

  • 正在执行的脚本的目录包含在sys.path中。
  • 添加PYTHONPATH环境变量的内容,除了在特定场景(例如,在 Windows 上使用 applocal=true)。
  • zip 文件路径,Linux/Mac 上的 lib/python35.zip 或 os.path.join(os.dirname(sys.executable),添加了 Windows 上的“python.zip”)。

其他特定于平台的迭代步骤:

  • Windows(非-applocal): 检查与 PythonPath 相关的注册表项并将其添加到 sys.path。
  • Windows(具有未知的 sys.前缀): 通过 sys 中的目录进行搜索如果可能的话,用于动态确定 sys.prefix 的地标文件的 .path。
  • Mac 和 Linux: sys.exec_prefix 的值附加到 sys.path。
  • Windows: PYTHONPATH 中编译时定义的路径是相对于 sys.prefix 添加的(如果动态找到)。
  • 所有平台: Python 加载站点模块,它根据全面的搜索过程动态地向 sys.path 添加更多路径。

这种详细的算法确保 Python 精心结合系统定义的路径和用户提供的环境变量,以提供智能且灵活的搜索导入模块的路径。

以上是Python 的 sys.path 如何获取其初始值?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
列表和阵列之间的选择如何影响涉及大型数据集的Python应用程序的整体性能?列表和阵列之间的选择如何影响涉及大型数据集的Python应用程序的整体性能?May 03, 2025 am 12:11 AM

ForhandlinglargedatasetsinPython,useNumPyarraysforbetterperformance.1)NumPyarraysarememory-efficientandfasterfornumericaloperations.2)Avoidunnecessarytypeconversions.3)Leveragevectorizationforreducedtimecomplexity.4)Managememoryusagewithefficientdata

说明如何将内存分配给Python中的列表与数组。说明如何将内存分配给Python中的列表与数组。May 03, 2025 am 12:10 AM

Inpython,ListSusedynamicMemoryAllocationWithOver-Asalose,而alenumpyArraySallaySallocateFixedMemory.1)listssallocatemoremoremoremorythanneededinentientary上,respizeTized.2)numpyarsallaysallaysallocateAllocateAllocateAlcocateExactMemoryForements,OfferingPrediCtableSageButlessemageButlesseflextlessibility。

您如何在Python数组中指定元素的数据类型?您如何在Python数组中指定元素的数据类型?May 03, 2025 am 12:06 AM

Inpython,YouCansspecthedatatAtatatPeyFelemereModeRernSpant.1)Usenpynernrump.1)Usenpynyp.dloatp.dloatp.ploatm64,formor professisconsiscontrolatatypes。

什么是Numpy,为什么对于Python中的数值计算很重要?什么是Numpy,为什么对于Python中的数值计算很重要?May 03, 2025 am 12:03 AM

NumPyisessentialfornumericalcomputinginPythonduetoitsspeed,memoryefficiency,andcomprehensivemathematicalfunctions.1)It'sfastbecauseitperformsoperationsinC.2)NumPyarraysaremorememory-efficientthanPythonlists.3)Itoffersawiderangeofmathematicaloperation

讨论'连续内存分配”的概念及其对数组的重要性。讨论'连续内存分配”的概念及其对数组的重要性。May 03, 2025 am 12:01 AM

Contiguousmemoryallocationiscrucialforarraysbecauseitallowsforefficientandfastelementaccess.1)Itenablesconstanttimeaccess,O(1),duetodirectaddresscalculation.2)Itimprovescacheefficiencybyallowingmultipleelementfetchespercacheline.3)Itsimplifiesmemorym

您如何切成python列表?您如何切成python列表?May 02, 2025 am 12:14 AM

SlicingaPythonlistisdoneusingthesyntaxlist[start:stop:step].Here'showitworks:1)Startistheindexofthefirstelementtoinclude.2)Stopistheindexofthefirstelementtoexclude.3)Stepistheincrementbetweenelements.It'susefulforextractingportionsoflistsandcanuseneg

在Numpy阵列上可以执行哪些常见操作?在Numpy阵列上可以执行哪些常见操作?May 02, 2025 am 12:09 AM

numpyallowsforvariousoperationsonArrays:1)basicarithmeticlikeaddition,减法,乘法和division; 2)evationAperationssuchasmatrixmultiplication; 3)element-wiseOperations wiseOperationswithOutexpliitloops; 4)

Python的数据分析中如何使用阵列?Python的数据分析中如何使用阵列?May 02, 2025 am 12:09 AM

Arresinpython,尤其是Throughnumpyandpandas,weessentialFordataAnalysis,offeringSpeedAndeffied.1)NumpyArseNable efflaysenable efficefliceHandlingAtaSetSetSetSetSetSetSetSetSetSetSetsetSetSetSetSetsopplexoperationslikemovingaverages.2)

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

SublimeText3 英文版

SublimeText3 英文版

推荐:为Win版本,支持代码提示!

安全考试浏览器

安全考试浏览器

Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Atom编辑器mac版下载

Atom编辑器mac版下载

最流行的的开源编辑器

VSCode Windows 64位 下载

VSCode Windows 64位 下载

微软推出的免费、功能强大的一款IDE编辑器