python spyder conda install failure

后端 未结 2 1043
死守一世寂寞
死守一世寂寞 2021-01-14 06:42

I am new to Python, now I am using Anaconda Spyder as my main Python distribution. I am learning how to use conda to install/update packages. When I read relevant books and

2条回答
  •  终归单人心
    2021-01-14 07:12

    You are trying to use a Python console to update your conda distribution when you have to update it from your local console.

    I guess you're using Windows, just open the command prompt (cmd.exe), and from there update the conda distribution with the commands you already know:

    conda update conda
    conda update anaconda
    conda install 
    

    Update:

    Conda commands have to be used directly in the command prompt:

提交回复
热议问题