前言
课程源于英特尔提供的学习资料。
人工智能学习目录
环境搭建
python
下载并安装python,设置环境变量。
参考 http://www.runoob.com/python/python-install.html
Jupyter notebooks
参考 http://jupyter.org/install
python3
python3 -m pip install --upgrade pip
python3 -m pip install jupyter
pathon2
python -m pip install --upgrade pip
python -m pip install jupyter
学习资料
image.png
使用jupyter notebooks
使用cmd切换到第一课内容目录下,执行命令。
jupyter notebook
会显示目录下文件及文件夹列表。
image.png
点击.ipynb文件,出现在线编辑输出python、markdown等功能页面。
image.png
双击内容区域便可以编写内容,选择类型,点击Run便可以查看允许结果。
网友评论