开始学习tensorflow啦,学习阶段会一直更新学习记录,仅供初学者使用~
安装
基础环境
anaconda
python3.7(激活环境)
安装tensorflow
tensorflow2.3
在prompt内进入python3.7的环境后执行:
pip install tensorflow-cpu==2.3.0 -i https://pypi.douban.com/simple/
检测安装
ok,安装成功
安装常用库
matplotlib
pandas
numpy
关于jupyter
1、进入jupyter notebook记录学习
jupyter notebook
2、修改文件保存路径
首先,执行这行代码
jupyter notebook --generate-config
然后就生成了jupyter_notebook_config.py文件
我的是在 C:\Users\ASUS.jupyter 文件夹下找到的
ok,打开jupyter_notebook_config.py文件,
找到
#c.NotebookApp.notebook_dir = ’ ’
1-将路径修改为自己想要保存的路径
2-去掉前面的#即可
3-找到jupyter的快捷方式,右键-更多-打开文件夹
4-右键-属性
把里面的%USERPROFILE%删掉即可
5-确定-重启jupyter notebook
3、jupyter notebook常用快捷键
快捷键 | 命令 |
---|---|
Enter | 转入编辑模式 |
Shift-Enter | 运行本单元,选中下个单元 |
Ctrl-Enter | 运行本单元 |
Alt-Enter | 运行本单元,在其下插入新单元 |
这个博主总结的很全面,在这儿我就不赘述啦~
https://blog.csdn.net/lawme/article/details/51034543