完美解决VScode下CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'

**

完美解决方法在文末!!!

**
要执行的代码如下:

import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))

产生如下错误:

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.

这里使用的是Anaconda3里的python:在这里插入图片描述
网上有说添加Anaconda3的三个环境变量
在这里插入图片描述
在这里插入图片描述
但还是不行。

接着,网上有方法说,在VScode中修改了python path
完美解决VScode下CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'_第1张图片
但还是不行。

**

解决方法:

**
最后,从这篇文章中https://blog.csdn.net/cskywit/article/details/99202520
找到方法。
完美解决VScode下CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'_第2张图片
完美解决问题!
测试结果如下:
完美解决VScode下CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'_第3张图片

你可能感兴趣的:(笔记,tensorflow,python,anaconda,visual,studio,windows)