linux 安装miniconda jupyter 远程连接/ tensorflow-gpu 支持

系统环境

linux 安装miniconda jupyter 远程连接/ tensorflow-gpu 支持_第1张图片
1.下载与系统对应版本 miniconda

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

2.运行miniconda安装程序

bash  Miniconda3-latest-Linux-x86_64.sh

开始安装Miniconda3……

linux 安装miniconda jupyter 远程连接/ tensorflow-gpu 支持_第2张图片

3.source ~/.bashrc

4.创建新conda环境

conda create -n env python=3.6

创建python环境python=3.6,名为env的conda环境

5启动env环境

source activate env

5.1安装jupyter notebook 及远程连接

conda install jupyter notebook

jupyter notebook --ip 0.0.0.0

6 关闭

source deactivate env

 

 

 

 

你可能感兴趣的:(计算机基础知识)