Python | 安装Jupyter Notebook及其目录的更改 jupyter问题

news/2024/11/25 2:46:20/

20211223

在这里插入图片描述
在非输入出双击d删除单元格

20211218

https://www.jianshu.com/p/c51f9504d84f
jupyter,ipynb转py

20211117

https://blog.csdn.net/qq_37884273/article/details/81777945
pycharm使用jupyter

快速注释
ctrl+/

在这里插入图片描述
当出现这种情况时候 先login out 然后再 stop server 在 重启 server 就可以了

https://www.jianshu.com/p/0ca970324d04

在这里插入图片描述
注意后面没有反斜杠

标签:Python、Jupyter Notebook

2019年02月16日 21:56:28

遇到的问题:

You are using pip version 10.0.1, however version 19.0.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

更新pip的命令:
python -m pip install --upgrade pip
更新过程:

C:\Users\Administrator>python -m pip install --upgrade pip
Collecting pipDownloading https://files.pythonhosted.org/packages/d7/41/34dd96bd33958e52cb4da2f1bf0818e396514fd4f4725a79199564cd0c20/pip-19.0.2-py2.py3-none-any.whl (1.4MB)100% |████████████████████████████████| 1.4MB 61kB/s
Installing collected packages: pipFound existing installation: pip 10.0.1Uninstalling pip-10.0.1:Successfully uninstalled pip-10.0.1
Successfully installed pip-19.0.2

在命令行敲入如下代码,回车进行安装:

C:\Users\Administrator>pip install jupyter notebook

安装完成后再命令行输入jupyter notebook并回车,如下:

C:\Users\Administrator>jupyter notebook
[I 21:59:02.857 NotebookApp] Writing notebook server cookie secret to C:\Users\Administrator\AppData\Roaming\jupyter\runtime\notebook_cookie_secret
[I 21:59:04.167 NotebookApp] Serving notebooks from local directory: C:\Users\Administrator
[I 21:59:04.167 NotebookApp] The Jupyter Notebook is running at:
[I 21:59:04.168 NotebookApp] http://localhost:8888/?token=c9adb76f7788bb70ddc72fe227911c30430a872ff3a992ca
[I 21:59:04.168 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 21:59:04.246 NotebookApp]
<span class="token class-name">To</span> access the notebook<span class="token punctuation">,</span> open <span class="token keyword">this</span> file <span class="token keyword">in</span> a browser<span class="token punctuation">:</span>file<span class="token punctuation">:</span><span class="token operator">/</span><span class="token comment">//C:/Users/Administrator/AppData/Roaming/jupyter/runtime/nbserver-9468-open.html</span>
<span class="token class-name">Or</span> copy and paste one of these URLs<span class="token punctuation">:</span>http<span class="token punctuation">:</span><span class="token operator">/</span><span class="token operator">/</span>localhost<span class="token punctuation">:</span><span class="token number">8888</span><span class="token operator">/</span><span class="token punctuation">?</span>token<span class="token operator">=</span>c9adb76f7788bb70ddc72fe227911c30430a872ff3a992ca

http://www.ppmy.cn/news/605337.html

相关文章

MySQL数据库的优化技术三

如何选择mysql的存储引擎 在开发中&#xff0c;我们经常使用的存储引擎 myisam / innodb/ memory存储引擎针对的是表和数据库 事务&#xff1a;MySQL事务主要用于处理操作量大&#xff0c;复杂度高的数据&#xff0c;比如说&#xff0c;在人员管理系统中&#xff0c;你删除一…

LeetCode简单题之统计数组中峰和谷的数量

题目 给你一个下标从 0 开始的整数数组 nums 。如果两侧距 i 最近的不相等邻居的值均小于 nums[i] &#xff0c;则下标 i 是 nums 中&#xff0c;某个峰的一部分。类似地&#xff0c;如果两侧距 i 最近的不相等邻居的值均大于 nums[i] &#xff0c;则下标 i 是 nums 中某个谷的…

软件工程生命周期模型对比分析

软件工程生命周期模型对比分析 2018年3月29日2018年3月28日 由 xyjisaw 本文共1515个字&#xff0c;预计阅读时间需要5分钟。 文章目录迭代-递增生命周期模型 增量模型 进化树模型 编码-修补生命周期模型 瀑布生命周期模型 快速原型开发生命周期模型 开源生命周期模型 同…

LeetCode中等题之最少移动次数使数组元素相等 II

题目 给你一个长度为 n 的整数数组 nums &#xff0c;返回使所有数组元素相等需要的最少移动数。 在一步操作中&#xff0c;你可以使数组中的一个元素加 1 或者减 1 。 示例 1&#xff1a; 输入&#xff1a;nums [1,2,3] 输出&#xff1a;2 解释&#xff1a; 只需要两步操…

数据结构--单链表的定义

数据结构–单链表的定义 本节的学习目标&#xff1a; 单链表的定义&#xff08;如何用代码实现&#xff09; 优点:不要求大片连续空间&#xff0c;改变容量方便 缺点:不可随机存取&#xff0c;要耗费一定空间存放指针 代码实现 struct LNode {ElemType data; //数据域stru…

LeetCode简单题之无法吃午餐的学生数量

题目 学校的自助午餐提供圆形和方形的三明治&#xff0c;分别用数字 0 和 1 表示。所有学生站在一个队列里&#xff0c;每个学生要么喜欢圆形的要么喜欢方形的。 餐厅里三明治的数量与学生的数量相同。所有三明治都放在一个 栈 里&#xff0c;每一轮&#xff1a; 如果队列最前…

LeetCode中等题之寻找右区间

题目 给你一个区间数组 intervals &#xff0c;其中 intervals[i] [starti, endi] &#xff0c;且每个 starti 都 不同 。 区间 i 的 右侧区间 可以记作区间 j &#xff0c;并满足 startj > endi &#xff0c;且 startj 最小化 。 返回一个由每个区间 i 的 右侧区间 的最…

Problem I Rank LED题解 - 2018年第一届GXCPC广西大学生程序设计大赛 正式赛

Problem I Rank LED题解 题目大意 ‘0’到‘9’的数字亮线依次为{6、2、5、5、4、5、6、3、7、6}。 Luras想修改每条光线的位置&#xff0c;使她的新等级尽可能小&#xff0c;同时新等级也是一个不带任何前导零的正整数。 另外&#xff0c;光线总数应与开始时相同。 官方题…