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 环境变量的平台无关方式
基础教程推荐
- 求两个直方图的卷积 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 包装空间模型 2022-01-01
