作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 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
变量不同:
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/
我是一名优秀的程序员,十分优秀!