python安装,anaconda安装

安装python已经很久了,学习基础的python知识也有两遍左右。但是始终没有真正用起来。
甚至连python的安装也甚是糊涂。不好不好,现在记录一遍,以备查阅。

一、python与anaconda安装(先安装了python后安装anaconda,基于python已存在的基础上安装anaconda)——逼死强迫症、超详解

python与anaconda安装(先安装了python后安装anaconda,基于python已存在的基础上安装anaconda)——逼死强迫症、超详解
博主写的很详细,我愿称之为终极填鸭式、究极保姆式之无敌详细教程。

安装过程中遇到的问题

1.报错UnavailableInvalidChannel: The channel is not accessible or is invalid

UnavailableInvalidChannel: The channel is not accessible or is invalid.
      channel name: anaconda/pkgs/free
      channel url: https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
      error code: 404
    You will need to adjust your conda configuration to proceed.
    Use `conda config --show channels` to view your configuration's current state,
    and use `conda config --show-sources` to view config file locations.

原因是源无效了。

解决办法是:使用以下命令默认恢复源

conda config --remove-key channels
原文地址:https://www.cnblogs.com/sggggr/p/15507342.html