Install Jupyter notebook and tensorflow on Ubuntu 18.04

点点圈 提交于 2020-01-08 11:08:10

1. Install conda environment following instructions here. https://www.digitalocean.com/community/tutorials/how-to-install-anaconda-on-ubuntu-18-04-quickstart

2. Create tensorflow environment by run command.

conda create --name tensorflow_env python=3

3. Activate the tensorflow environment by run command.

conda activate tensorflow_env

4. Install tensorflow and jupytor notebook in the tensorflow_env.

conda install tensorflow
conda install jupyter notebook
conda install matplotlib

5. Start jupyter notebook.

jupyter notebook

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!