安装python的jupyter notebook工具

jupyter notebook是一个通过网页运行python的工具

支持分段的python运行,并能直观的查看结果

支持多python环境运行,需要加装(conda)

安装步骤

1.安装python3,并设置环境变量

2.安装jupyter

pip3 install --upgrade pip
pip3 install jupyter

3.启动

命令行下运行,进行启动,会自动打开web控制台,默认端口是8888

jupyter notebook
改变端口:jupyter notebook --port 9999

默认的路径是命令行启动的路径
 
				
时间: 2024-08-24 14:28:38

安装python的jupyter notebook工具的相关文章

Pycharm安装并配置jupyter notebook

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

windows下安装python的包管理工具pip,scikit-learn

打开https://pip.pypa.io/en/latest/installing.html#python-os-support 下载pip-get.py 进入python,执行pip-get.py 安装完pip,setuptool工具. 进入.python/scripts目录,执行pip install scikit-learn

jupyter Notebook环境搭建

1.什么是jupyter notebook jupyter notebook是一种 Web 应用,能让用户将说明文本.数学方程.代码和可视化内容全部组合到一个易于共享的文档中.它可以直接在代码旁写出叙述性文档,而不是另外编写单独的文档.也就是它可以能将代码.文档等这一切集中到一处,让用户一目了然. Jupyter这个名字是它要服务的三种语言的缩写:Julia,PYThon和R,这个名字与"木星(jupiter)"谐音.Jupyter Notebook 已迅速成为数据分析,机器学习的必备

jupyter交互式工具安装使用

搬砖的陈大师版权所有,转载请注明:http://www.lenggirl.com/tool/jupyter.html Jupyter Notebook(此前被称为IPython notebook)是一个交互式笔记本,支持运行 40 多种编程语言. 参考:https://www.zhihu.com/question/37490497 文档:https://jupyter-notebook.readthedocs.io 安装 Ubuntu16.04按顺序安装,必须python3.5以上版本 pip3

jupyter notebook学习

安装 在我的电脑中安装了anaconda,所以我用anaconda来安装,先切换到我要安装的环境下,然后开始安装jupyter activate tfconda install jupyter 安装完毕后运行jupyter jupyter notebook 这个界面不要关闭,然后默认浏览器会打开一个网页,地址为    http://localhost:8888/tree#   ,浏览器中的界面长这样 使用 其他的东西我们都先不管,先看右边的new 里面有几个选项,python 3是我们主要使用的

ubuntu下anaconda使用jupyter notebook加载tensorflow、pytorch

1. 安装完anaconda后,其环境会为我们在base(root)这个环境下配置jupyter notebook,而我们自己配置的TensorFlow环境下是没有自动配置这个工具的,所以我们需要自己在这个环境下配置jupyter notebook工具,具体操作如下: 1 conda activate tf #首先激活自己的tensorflow环境,tf为我自己的环境名,注意更改 有的博客中 使用的是 source activate tf, 2 conda install ipython 3 c

配置访问公网主机上的jupyter notebook

文章结构: 一.安装python 二.安装并配置jupyter并配置jupyter 三.第一个python程序 一.安装python 1.1下载python安装包 # wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz 1.2源码编译安装python # yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readlin

远程连接服务器jupyter notebook、浏览器以及深度学习可视化方法

h1 { counter-reset: h2counter; } h2 { counter-reset: h3counter; } h3 { counter-reset: h4counter; } h4 { counter-reset: h5counter; } h5 { counter-reset: h6counter; } h6 { } h2:before { counter-increment: h2counter; content: counter(h2counter) ".\0000a

Anaconda下的 Jupyter Notebook 安装 多python环境

装完 Anaconda 会自带一个pyhon环境   也会自带Jupyter Notebook   可以点击开始中的Jupyter Notebook 打开 浏览器 我这里是 3.x 想要装个2.7 的 并且互相切换 如下 点击 Anaconda Prompt 进入控制台 (没配环境变量的进入 安装的根目录下) 第一 输入  conda create -n py27 python=2.7          [其中py27是你随便起的  2.7 是版本]   之后 直接输入y 第二 输入 activ