安装Anaconda3-2019.10-windows-x86_64以及安装jupyter notebook
12.5笔记
安装Anaconda3-2019.10-windows-x86_64以及安装jupyter notebook
一、安装Anaconda3-2019.10-windows-x86_64
1.windows+R→运行:输入cmd
2.输入:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy 回车
(应用清华镜像https://mirrors.tuna.tsinghua.edu.cn/)
Pip是命令行接口,可安装Python软件包
可以在使用pip的时候,加上参数-i和镜像地址(https://pypi.tuna.tsinghua.edu.cn/simple)
常用的国内镜像:
(1)阿里云 http://mirrors.aliyun.com/pypi/simple/
(2)豆瓣http://pypi.douban.com/simple/
(3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
(4)中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
(5)华中科技大学http://pypi.hustunique.com/
注意:新版ubuntu要求使用https源。
3.升级:python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U(如果无法升级,请搜索百度搜索如何配置环境变量,或参考这个
https://blog.csdn.net/qq_31672775/article/details/78164794)
二、安装jupyter notebook
1.windows+R→运行:输入cmd
2.输入:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter 回车
3.安装完成
4.打开:jupyter notebook 回车
5.网页中输入:import numpy as np shift+enter 进行到下一行(见deeplearning笔记P66)
三、Anaconda3
1.找到安装完的Anaconda3→(右键)以管理员身份运行→next→I agree→选择all users→见下图
更改路径(尽量装在除了C盘之外的磁盘)→next→
点击确定之后→install→安装完成
四、操作
1.更改路径:在某个盘中点击一个文件夹(想要更改路径的文件)
点击此框→
→直接输入cmd→回车→→ 完 成
本文地址:https://blog.csdn.net/m0_53277277/article/details/110728927