解决VS Code 运行 “conda : The term ‘conda‘ is not recognized as the name of a cmdlet, function, script “
今天开始学习Panda, 第一个程序就运行报错了, 错误如下conda : The term 'conda' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path wasincluded,
·
今天开始学习Panda, 第一个程序就运行报错了, 错误如下
conda : The term 'conda' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was
included, verify that the path is correct and try again.
这是错误截图:
大致意思就是说, CMD目前不能识别conda
这个命令, Win+R
打开CMD, 运行conda
, 发现果然无法识别, 应该就是安装了Anaconda, 但是咱们的环境变量还没有配置, 所以会出现这个问题.
解决方法很简单, 把Anaconda的变量添加到系统环境中就好了, 但是这里要注意的是, 我们需要添加的不是anaconda根目录下的bin\
目录, 而是Scripts\
目录.
解决步骤
- 找到anaconda的安装路径, 我这里是
C:\Applications\anaconda3\Scripts
- 打开系统环境变量, 在
用户变量
或者系统变量
里 (两个都可以, 如果不想把系统变量弄乱, 就在用户变量里添加), 找到Path
, 双击打开, 然后添加一个新值, 内容为anaconda的Scripts目录的路径, 我这里是C:\Applications\anaconda3\Scripts
. - 然后一路保存确定, 就可以了.
- 然后从CMD中测试
conda
, 发现可以了!
更多推荐
已为社区贡献3条内容
所有评论(0)