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 环境变量的平台无关方式
基础教程推荐
- 尝试制作WhatsApp机器人 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
