Python: Platform independent way to modify PATH environment variable(Python:修改 PATH 环境变量的平台无关方式)
问题描述
有没有办法使用 python 以独立于平台的方式修改 PATH 环境变量?
Is there a way to modify the PATH environment variable in a platform independent way using python?
类似于 os.path.join() 的东西?
推荐答案
你应该可以修改os.environ.
由于 os.pathsep 是分隔不同路径的字符,您应该使用它来附加每个新路径:
Since os.pathsep is the character to separate different paths, you should use this to append each new path:
os.environ["PATH"] += os.pathsep + path
或者,如果有多个路径要添加到列表中:
or, if there are several paths to add in a list:
os.environ["PATH"] += os.pathsep + os.pathsep.join(pathlist)
正如您所提到的,os.path.join 也可用于您必须附加的每个单独的路径,以防您必须从单独的部分构建它们.
As you mentioned, os.path.join can also be used for each individual path you have to append in the case you have to construct them from separate parts.
这篇关于Python:修改 PATH 环境变量的平台无关方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python:修改 PATH 环境变量的平台无关方式
- 计算测试数量的Python单元测试 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
