ubutun 服务器配置jupyter notebook】的更多相关文章

由于能力有限,学习机器学习时候发现,自己的电脑带不起来,所以想起了服务器,选择的是阿里的ubutun服务器,所以希望能够 使用jupyter notebook,看到网上一大片,配置和好久,才成功,在这里进行一下记录,一边将来使用方便. 第一步:得到的是一个没有自己安装软件的服务器,ubutun自带python,安装anaconda 从清华镜像或者淘宝镜像下载相关的版本,可以使用scp传送过去(也可以直接服务器上下载,自行百度) scp Anaconda3-5.3.1-Linux-x86_64.s…
在Linux服务器上运行Jupyter notebook server教程 很多deep learning教程都推荐在jupyter notebook运行python代码,方便及时交互.但只在本地运行没有GPU环境,虽然google colab是个好办法,但发现保存模型后在云端找不到模型文件,且需要合理上网才能访问.于是想给实验室的服务器配置jupyter notebook,供本机远程访问.踩了不少坑,码一下教程以供参考. 服务器环境是Ubuntu 16.04.5 LTS .本机windows1…
首先要生成密码,打开python终端. In [1]: from IPython.lib import passwd In [2]: passwd() Enter password: Verify password: Out[2]: 'sha1:0e422dfccef2:84cfbcb b3ef95872fb8e23be3999c123f862d856' 接下来生成秘钥: openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout my…
首先要生成密码,打开python终端. In [1]: from IPython.lib import passwd In [2]: passwd() Enter password: Verify password: Out[2]: 'sha1:0e422dfccef2:84cfbcb b3ef95872fb8e23be3999c123f862d856' 接下来生成秘钥: openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout my…
最近在学习一些服务器上的操作,学着熟悉Liunx系统,记录下自己踩过的坑吧 1.开机后更新系统: yum -y upgrade yum - y update 2.查看已安装的应用 yum list 3.接下来因为要用到anaconda+Python环境,配置下: 1.首先,你要知道系统现在的python的位置在哪儿: [root@root ~]# whereis python python: /usr/bin/python2.7 /usr/bin/python /usr/lib/python2.…
基于Ubuntu+Python+Tensorflow+Jupyter notebook搭建深度学习环境 前言一.环境准备环境介绍软件下载VMware下安装UbuntuUbuntu下Anaconda的安装二.Xshell远程连接Ubuntu系统三.Jupyter notebook服务器的配置及远程访问四.远程环境的测试Tensorflow软件库的安装简单爬虫数据可视化基于神经网络实现fashion_mnist图片的识别总结 前言 如今,人工智能.深度学习等高深知识逐渐融入大家的视野,小大验证码的识…
安装annaconda 与jupyter notebook annaconda在已经自带了jupyter notebook.jupyter lab.ipython 等一系列工具,不需要再单独安装这些工具,方便快捷. 下载安装脚本 wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.1-Linux-x86_64.sh 运行安装向导 这一步一直点yes 和下一步即可,到最后询问你是否安装vscode ,服务…
远程访问Jupyter Notebook Jupyter Notebook很好用,但是直接远程在服务器上用体验当然不如本地计算机好,那么如何远程访问呢? 首先需要在服务器上安装好ipython, jupyter notebook, pip install ipython pip install jypyter 生成配置文件 jupyter notebook --generate-config 生成密码 打开ipython, 创建一个密文密码 In [1]: from notebook.auth…
0.安装环境 Windows10,Python3.5.1,IPython,jupyter notebook,and other functionality 官方安装文档Linux版3.x 官方安装文档列表,包含3.x2.x等等 1.下载Python最新版(3.5.1版链接)(根据机器位数下载如64位) 2.安装Python 有几步不是默认的(注意) 2.1 双击安装包,勾选添加到path  2.2默认下一步  2.3勾选全部用户使用  等待安装完成! 2.4检查是否已经安装好pip和setupt…
转载自:https://www.dataquest.io/blog/jupyter-notebook-tips-tricks-shortcuts/ Jupyter notebook, formerly known as the IPython notebook, is a flexible tool that helps you create readable analyses, as you can keep code, images, comments, formulae and plots…