Heroku CLI 命令在安装后无法识别
Posted
技术标签:
【中文标题】Heroku CLI 命令在安装后无法识别【英文标题】:Heroku CLI commands are not recognized after installation 【发布时间】:2018-01-01 05:15:45 【问题描述】:我已经安装了 Heroku CLI 和 git。安装后,我重新启动了命令提示符。当我运行 git 命令时,可以很好地识别这些命令。但是当我输入诸如heroku version
之类的 Heroku 命令时,它们无法识别。
所以我将路径变量设置为指向 Heroku 安装。现在,Heroku 命令正在运行,但 git 命令已无法识别。
真正的问题是什么?
这里是cmd提示内容。
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Deva 5>git config --list
core.symlinks=false
core.autocrlf=true
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
diff.astextplain.textconv=astextplain
rebase.autosquash=true
credential.helper=manager
user.email=****
user.name=****
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
core.hidedotfiles=dotGitOnly
gui.wmstate=normal
gui.geometry=888x427+150+150 171 192
C:\Users\Deva 5>heroku version
'heroku' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\Deva 5>heroku login
'heroku' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\Deva 5>set path="C:\Program Files\Heroku\bin"
C:\Users\Deva 5>heroku version
heroku-cli: Updating to 6.13.1-7bcaf87... 11.6 MB/11.6 MB
heroku-cli/6.13.1-7bcaf87 (windows-x64) node-v8.2.1
C:\Users\Deva 5>git config --list
'git' is not recognized as an internal or external command,
operable program or batch file.
【问题讨论】:
【参考方案1】:set path="C:\Program Files\Heroku\bin"
通过这样做,您替换 PATH 变量以仅 包含该路径。所以你基本上破坏了其他一切。
您通常做的是将新路径附加或预先添加到 PATH 变量中,例如像这样:
set PATH=%PATH%;C:\Program Files\Heroku\bin
永久的解决方案是编辑您的 Windows 以默认包含 Heroku 可执行文件的路径。有关更多信息和说明,请参阅 SuperUser 上的此问题:What are PATH and other environment variables, and how can I set or use them?
【讨论】:
【参考方案2】:-
只需关闭 vs 代码、命令提示符和所有浏览器即可。
然后重新启动您的电脑。然后打开你的cmd,
进入项目文件并写入“heroku login”
它会工作
【讨论】:
以上是关于Heroku CLI 命令在安装后无法识别的主要内容,如果未能解决你的问题,请参考以下文章
Linux 安装Anaconda/Miniconda以后无法识别conda命令