由于清华大学的镜像不支持anconda了
conda config --remove channels https://pypi.doubanio.com/simple/
用上面指令去除镜像
下面是显示镜像的命令
conda config --show
创建环境:conda create -n tensorflow python=3.5 (tensorflow是环境名,当然也可乱取
进入新建环境:activate tensorflow
安装tensorflow: pip3 install tensorflow
查看已有的虚拟环境:conda info –envs
安装spyder: pip install spyder