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,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
