1.安装jupyter notebook pip install jupyter 2.生成配置文件 jupyter notebook --generate-config 3.设置登陆密码并生成秘钥 sha1秘钥需要复制,下一步要用 4.修改配置文件 进入配置文件所在的文件夹:cd ~/.jupyter 编辑配置文件jupyter_notebook_config.py:vim jupyter_notebook_config.py 进入vim后,按i进入编辑模式,在文件的最后加上配置信息 c.Not…
准备工作 首先要安装 ipython 推荐直接 Anaconda 搞起(装在服务器). Anaconda 帮你集成N多python相关环境(包),省得你再手动咔咔一顿安装 服务器启动ipython notebook 代码: ipython notebook --ip 0.0.0.0 --port 8899 # 端口自己定义 # ip 我直接用的四个0,有需求的话可以自己改 记得指定ip 和 端口,启动时你当前路径在哪,进入notebook时路径就在哪. 本地访问 将上图中URL复制到本地浏览器…
安装和配置Jupyter Notebook 安装jupyter notebook conda conda install -c conda-forge notebook pip pip install notebook 安装好之后,运行: jupyter notebook 看是否能成功运行 配置Jupyter notebook 首先生成配置文件:sudo jupyter notebook --generate-config 然后修改位于~/.jupyter/jupyter_notebook_co…
不多说,直接上干货! 前期博客 Windows下的Python 3.6.1的下载与安装(适合32bits和64bits)(图文详解) 这是我自定义的Python 的安装目录 (D:\SoftWare\Python\Python36\Scripts) 1.Jupyter Notebook 和 pip 为了更加方便地写 Python 代码,还需要安装 Jupyter notebook. 利用 pip 安装 Jupyter notebook. 为什么要使用 Jupyter?参考: https://ww…
ubuntu下设置jupyter notebook     来源:http://blog.csdn.net/suzyu12345/article/details/51037905 Ipython Notebook现在已经改名为Ipython jupyter,是最知名最好用的Python数据分析工具. 下面讲讲怎么在Linux下安装ipython jupyter,以及远程访问,我这里是在虚拟机中配置ipython,windows访问虚拟机中的ipython jupyter. 1. 安装anacon…
前言 系统环境:win10 x64:跟环境也没啥关系,在LInux下也一样... 前段时间重换了系统后,发现Jupyter Notebook的默认启动目录不太对呀,所以,就翻到了以前的笔记,还是记在这里吧. 配置Jupyter Notebook默认启动目录 原环境 查看Jupyter Notebook快捷方式的属性,注意到目标栏目里面,默认启动目录是%USERPROFILE%,也就是用户目录下的个人账户目录. 配置步骤 删除快捷方式的属性中的%USERPROFILE% 修改Jupyter Not…
Pycharm安装并配置jupyter notebook Pycharm安装并配置jupyter notebook 一: 安装命令jupyter: pip install jupyter 如果缺少依赖,缺啥装啥 二: 运行 jupyter notebook 首先,查看一下自己是否已经安装成功,在终端输入: jupyter notebook 如果运行成功,结果如下: [I 09:03:15.177 NotebookApp] JupyterLab beta preview extension loa…
这是<使用亚马逊云服务器EC2做深度学习>系列的第二篇文章. (一)申请竞价实例  (二)配置Jupyter Notebook服务器  (三)配置TensorFlow  (四)配置好的系统镜像 Jupyter Notebook是Python中的一个开源编辑器.它的主界面就是一个网页,可以在浏览器中远程执行程序. 同时它可以方便地混杂代码和程序的说明,有许多TensorFlow的教程就是用Jupyter Notebook来编写的. 出于安全的考虑,Jupyter Notebook默认只能在本地访…
1.Jupyter Notebook 和 pip 为了更加方便地写 Python 代码,还需要安装 Jupyter notebook. 利用 pip 安装 Jupyter notebook. 为什么要使用 Jupyter?参考: https://www.zhihu.com/question/37490497  pip: Python 的包管理工具,安装 Python 的同时已经安装好了.  Jupyter notebook: 一个交互式笔记本,支持运行 40 多种编程语言. 利用她来写 Pyth…
linux下配置lamp步骤: 一.快速安装Apache+PHP5+MySql 先更新: # yum update 然后安装LAMP环境:(163的yum源上只有php5.1.6 mysql 5.0.95 版本较低) # yum -y install httpd php mysql mysql-server php-mysql httpd-manual mod_ssl mod_perl mod_auth_mysql php-mcrypt php-gd php-xml php-mbstring p…