首页 > 编程语言 > 详细

vscode调试python时提示无法将“conda”项识别为 cmdlet、函数、脚本文件或可运行程序的名称的解决方法

时间:2019-03-01 23:56:55      阅读:9094      评论:0      收藏:0      [点我收藏+]

VS调试时提示如下信息:

conda : 无法将“conda”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径
正确,然后再试一次。
所在位置 行:1 字符: 1

技术分享图片

解决办法:

没有添加系统变量,所有系统根本识别不了conda命令,找不到位置,所以添加以下系统变量:

添加对应Anaconda环境变量到用户变量中:(以自己的安装路径为准):

我的是:

D:\Anaconda

D:\Anaconda\Scripts

D:\Anaconda\Library\bin

示例见下图:

技术分享图片

添加好后重启VS即可。

如果重启vscode调试后提示下面的信息:

PS D:\Python> D:/Anaconda/Scripts/activate
PS D:\Python> conda activate base

CommandNotFoundError: Your shell has not been properly configured to use ‘conda activate‘.
If your shell is Bash or a Bourne variant, enable conda for the current user with

$ echo ". D:\Anaconda/etc/profile.d/conda.sh" >> ~/.bashrc

or, for all users, enable conda with

$ sudo ln -s D:\Anaconda/etc/profile.d/conda.sh /etc/profile.d/conda.sh

The options above will permanently enable the ‘conda‘ command, but they do NOT
put conda‘s base (root) environment on PATH. To do so, run

$ conda activate

in your terminal, or to put the base environment on PATH permanently, run

$ echo "conda activate" >> ~/.bashrc

Previous to conda 4.4, the recommended way to activate conda was to modify PATH in
your ~/.bashrc file. You should manually remove the line that looks like

export PATH="D:\Anaconda/bin:$PATH"

^^^ The above line should NO LONGER be in your ~/.bashrc file! ^^^

把之前的方法在做一遍,这次是把之前那三个路径添加到系统变量的path下即可。

技术分享图片

 

vscode调试python时提示无法将“conda”项识别为 cmdlet、函数、脚本文件或可运行程序的名称的解决方法

原文:https://www.cnblogs.com/wjw2018/p/10459185.html

(2)
(2)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!