The environment is inconsistent, please check the package plan carefully

前端 未结 10 1584
忘了有多久
忘了有多久 2020-11-28 02:29

I tried to update or install new packages from anaconda and lately, this message has appeared:

The environment is inconsistent, please check the package plan         


        
10条回答
  •  感情败类
    2020-11-28 03:01

    You probably installed anaconda with python 2.7 but later you used python 3.x. Thus, you are getting an error message. In my case, I solved the problem by activating anaconda with python 2.7:

    conda create --name py2 python=2.7
    

提交回复
热议问题