本人最近由于数据处理课程的需要所以不得不安装tensorflow的下面分享一下适合小白的快速安装方法
前期准备,添加镜像源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
1.打开conda
2.创建一个python版本为3.7.3的虚拟环境
conda create -n tensorflowcp37 python==3.7.3
3.激活虚拟环境
conda activate tensorflowcp37
4.安装tensorflow
pip install tensorflow==2.3.0
5.安装matplotlib
pip install matplotlib==2.2.3
6.安装sklearn
pip install scikit-laern==1.0.2
7.安装pandas
pip install pandas==1.1.0
至此大部分tensorflow需要的库安装完成