gpt4 book ai didi

python -/bin/env : python: No such file or directory (Windows through Git Bash trying to install new Parse Cloud Code)

转载 作者:IT老高 更新时间:2023-10-28 20:51:44 26 4
gpt4 key购买 nike

尝试从 link here 安装 python似乎无法访问 Msysgit 中的 python 命令... the instructions here 之后,实际上并没有说明如何让 python 根据需要工作。

运行 parse new project_name 时的当前错误是:

/bin/env: python: No such file or directory

我相信这很可能是因为它安装在 C:\Python...有人知道如何解决这个问题吗?

最佳答案

这个错误意味着 Git Bash 不知道你的 python.exe 在哪里。它搜索您的正常 Windows 搜索路径,即 PATH 环境变量。您可能已经在“确保 Python 在 Git Bash 中工作”的说明的第 4 步失败了:

$ python --version
sh.exe: python: command not found

要解决此问题,请将 C:\Python(或安装 python 的任何位置)附加到 windows (instructions here) 中的 PATH 环境变量中.您需要在此之后重新启动 bash 才能使更改生效。这也将允许您从 Windows 命令提示符运行 python。

C:\> python --version
Python 2.7.2

如果你不想改变你的 windows PATH 变量或让 python 只对 git bash 可用,你可以在你的 中创建一个 .bashrc 文件%USERPROFILE% 目录并在那里设置变量:

C:\>notepad %USERPROFILE%\.bashrc

并添加

export PATH=/c/Python:$PATH

到文件。每次启动 git bash 时都会执行该脚本,并将 C:\Python 附加到 git bash 的 PATH 变量中,而系统范围的 PATH 变量保持不变。

既然您知道必须做什么,您可以在 bash 上使用此快捷方式(将导出命令附加到您的 .bashrc)

$ echo export PATH=/c/Python:\$PATH >> ~/.bashrc

关于python -/bin/env : python: No such file or directory (Windows through Git Bash trying to install new Parse Cloud Code),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13091522/

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