[机器学习]Jupyter Notebook 安装使用
Posted 大数据Manor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[机器学习]Jupyter Notebook 安装使用相关的知识,希望对你有一定的参考价值。
开头
大家好,我是程序员manor,我希望自己能成为国家复兴道路的铺路人,大数据领域的耕耘者,平凡但不甘于平庸的人。
暑假打算做一个大数据项目巩固所学知识,
学习的课程是某硅谷的实时推荐和机器学习项目
https://www.bilibili.com/video/BV1R4411N78S?p=1
以下是我的学习输出:
Jupyter Notebook 安装使用
1.安装 python(略)
2.安装 python 虚拟环境
pip install virtualenv -i https://pypi.tuna.tsinghua.edu.cn/simple/
这里用 -i 参数指定了国内源,方便快速下载
3.创建虚拟环境
virtualenv -p python3 py3
这里创建的是 python 3 的虚拟环境,目录名叫py3
4.启动 python 虚拟环境
source py3/bin/activate
5.在虚拟环境中安装jupyter
(py3)> pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple/
6.安装所需的python库
(py3)> pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple/
(py3)> pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple/
(py3)> pip install pandas -i https://pypi.tuna.tsinghua.edu.cn/simple/
(py3)> pip install sklearn -i https://pypi.tuna.tsinghua.edu.cn/simple/
7.创建目标目录并进入
(py3)> mkdir algorithm
(py3)> cd algorithm
8.启动jupyter notebook
(py3)> jupyter notebook
默认启动端口为8888,复制链接后可以通过浏览器访问。
总结
以上便是Jupyter Notebook 安装使用
安装教程已经上传到我的资源,诸位可自行下载~
以上是关于[机器学习]Jupyter Notebook 安装使用的主要内容,如果未能解决你的问题,请参考以下文章
Mac 安装Pytorch, Jupyter notebook, conda, python3
机器学习 Jupyter Notebook, numpy和matplotlib的详细使用 (上)