gpt4 book ai didi

python - 如何在 Python 中将目录添加到系统路径变量

转载 作者:行者123 更新时间:2023-12-05 04:47:28 38 4
gpt4 key购买 nike

我在 Windows 上运行 python 3.9。

print(sys.path)
currDir = os.getcwd()
currDir += "\node"

sys.path.append(currDir)
print(sys.path)

我看到 sys.path 的第二个打印有我的 c:\working\node\

但我的问题是当我在 c:\working\node\ 下运行命令时,例如npm 安装

p = subprocess.Popen(["npm.cmd", "install]),

我收到错误提示“系统找不到指定的文件”

在我的脚本运行后,我尝试“echo %PATH%”,我也没有在 %PATH% 变量中看到 c:\working\node\ 吗?

你能告诉我如何将新目录添加到系统路径变量,以便 subprocess.Popen 可以看到新添加的内容吗?

最佳答案

sys.path 与指定在何处搜索二进制文件的 PATH 变量不同:

sys.path

A list of strings that specifies the search path for modules. Initialized from the environment variable PYTHONPATH, plus an installation-dependent default.

您想set the PATH variable in os.environ相反。

app_path = os.path.join(root_path, 'other', 'dir', 'to', 'app')
os.environ["PATH"] += os.pathsep + os.path.join(os.getcwd(), 'node')

关于python - 如何在 Python 中将目录添加到系统路径变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68449986/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com