Pycharm 终端Warning: This Python interpreter is in a conda environment, but the environment has not

出现这个问题一般是因为pycharm中的终端是引用的系统的终端,也就是说和直接win+r 出来的cmd是一个终端。这个错误提示的意思是:python解释器在conda环境下,但是conda环境没有被激活。

有两种解决方案。

方案一、修改环境变量

如果想要系统终端使用非conda环境下的那个python解释器。需要修改环境变量,将系统要使用的python解释器的环境变量上移到anaconda环境变量的上面,否则系统选取的时候会自动选择conda中的python解释器。

Pycharm 终端Warning: This Python interpreter is in a conda environment, but the environment has not_第1张图片

方案二,切换conda环境

如果就是想用conda下的python解释器,那么就按照错误提示说的,将终端切换到conda环境下

首先conda初始化

conda init

 查看conda环境列表

conda env list

Pycharm 终端Warning: This Python interpreter is in a conda environment, but the environment has not_第2张图片

 切换到对应的环境

conda activate base

 Pycharm 终端Warning: This Python interpreter is in a conda environment, but the environment has not_第3张图片

 就可以了。

你可能感兴趣的:(python,pycharm,conda)