anaconda3+python3.6+tensorflow2.5.0安装--一定都要用pip安装

1、创建虚拟环境

source activate sklearn_dev ## 第一次装完anaconda后新建第一个虚拟环境激活要用source
 
conda activate tf2_dev   ## 创建后续的虚拟环境激活用 conda activate

2、在虚拟环境下,安装ipykernel 为jupyter提供ipython 内核

pip install ipykernel

3、添加虚拟环境到jupyter,并指定名字(在jupyter-notebook中显示的虚拟环境的名字)

python -m ipykernel install --user --name=sklearn_dev

4、安装tensorflow

pip install -i https://mirrors.aliyun.com/pypi/simple/ tensorflow (用清华源有timeout,改用阿里的)  

清华:https://pypi.tuna.tsinghua.edu.cn/simple

阿里云:http://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

华中理工大学:http://pypi.hustunique.com/

山东理工大学:http://pypi.sdutlinux.org/ 

豆瓣:http://pypi.douban.com/simple/

你可能感兴趣的:(anaconda3+python3.6+tensorflow2.5.0安装--一定都要用pip安装)