日志2-windows系统pip install安装jupyter

jupyter notebook安装与使用

安装

pip install jupyter
jupyter notebook
(12条消息) 利用pip install命令安装jupyter出错-编程语言-CSDN问答
pip install jupyter
一般都是网络的问题,尝试手机开热点电脑连接后使用命令安装
cmd中pip不是内部或外部命令怎么解决-Python教程-PHP中文网
系统变量path中在原有python路径的基础上加 \Scripts
如:C:\Users\Administrator\AppData\Local\Programs\Python\Python37\Scripts
pip报错:ValueError: check_hostname requires server_hostname怎么办? | w3c笔记 (w3cschool.cn)
关掉代理
(12条消息) 解决pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool_禅心001的博客-CSDN博客
直接指定特定源
pip --default-timeout=100 install tensorflow==2.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install jupyter
结果 WARNING: You are using pip version 21.2.4; however, version 23.0.1 is available.
(12条消息) pip报错:WARNING: You are using pip version 21.2.4; however, version 21.3.1 is available._you should consider upgrading via the 'c:\program _反内卷大官人的博客-CSDN博客
python -m pip install --upgrade pip
pip -V
结果 pip 21.2.4 from F:\python3.9.9\lib\site-packages\pip (python 3.9)
(13条消息) 为什么windows系统中python -m pip install --upgrade pip没有反应_qq_35119170的博客-CSDN博客
系统变量删掉 %USERPROFILE%\AppData\Local\Microsoft\WindowsApps
然后重启cmd!
结果 python 不再打开windows商城
F:\python3.9.9\python.exe -m pip install --upgrade pip
结果 Requirement already satisfied: pip in f:\python3.9.9\lib\site-packages (21.2.4)
pip install jupyter
结果 WARNING: You are using pip version 21.2.4; however, version 23.0.1 is available.
You should consider upgrading via the 'F:\python3.9.9\python.exe -m pip install --upgrade pip' command.
?????emmm什么死循环
F:\python3.9.9\python.exe -m pip install --user --upgrade pip==23.0.1
Collecting pip==23.0.1
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' files.pythonhosted.org', port=443): Read timed out. (read timeout=15)")': /packages/07/51/2c0959c5adf988c44d9e1e0d940f5b074516ecc87e96b1af25f59de9ba38/pip-23.0.1-py3-none-any.whl
(13条消息) Python学习:解决pip总是WARNING: Retrying (Retry(total=4..._pip retrying_AomiGa523的博客-CSDN博客
pip install [whatyouwant] -i url
F:\python3.9.9\python.exe -m pip install --upgrade pip -i http://pypi.douban.com/simple/
Looking in indexes: http://pypi.douban.com/simple/
Requirement already satisfied: pip in f:\python3.9.9\lib\site-packages (21.2.4)
WARNING: The repository located at pypi.douban.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host pypi.douban.com'.
WARNING: You are using pip version 21.2.4; however, version 23.0.1 is available.
You should consider upgrading via the 'F:\python3.9.9\python.exe -m pip install --upgrade pip' command.
F:\python3.9.9\python.exe -m pip install --upgrade pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com '
Looking in indexes: http://pypi.douban.com/simple/
Requirement already satisfied: pip in f:\python3.9.9\lib\site-packages (21.2.4)
WARNING: The repository located at pypi.douban.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host pypi.douban.com'.
WARNING: You are using pip version 21.2.4; however, version 23.0.1 is available.
You should consider upgrading via the 'F:\python3.9.9\python.exe -m pip install --upgrade pip' command.
pip install jupyter
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/jupyter/
pip install jupyter -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
结果有很多加载的进度条
WARNING: You are using pip version 21.2.4; however, version 23.0.1 is available.
You should consider upgrading via the 'F:\python3.9.9\python.exe -m pip install --upgrade pip' command.
jupyter notebook
打开了!
下面有几个国内的pip源:
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

启动

jupyter notebook

(12条消息) python3.9+Anaconda+pytorch+Jupyter安装教程_晴花烟雨的博客-CSDN博客

真是绝了!史上最详细的Jupyter Notebook入门教程 - 腾讯云开发者社区-腾讯云 (tencent.com)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Jupyter Notebook是一个交互式的数据分析和开发环境,常用于Python编程。以下是安装Jupyter Notebook的基本步骤: 1. **确认你的操作系统**: Jupyter Notebook支持Windows, macOS, 和Linux。确保你的系统是这些之一。 2. **安装Python(如果你还没有)**: 如果你还没有Python,首先访问Python官网(https://www.python.org/downloads/),下载并安装最新版本的Python(推荐使用Python 3.x)。 3. **安装Anaconda或Miniconda**: Anaconda(https://www.anaconda.com/products/distribution)或Miniconda(https://docs.conda.io/en/latest/miniconda.html)提供了Python及其各种科学计算库的集成包,包括Jupyter Notebook。选择适合你的系统安装包,按照指示安装。 4. **使用Conda或pip安装Jupyter Notebook**: - **通过Anaconda或Miniconda安装**: 打开终端或命令提示符,输入 `conda install notebook` 或 `conda create -n myenv notebook` (替换myenv为你的环境名)。 - **使用pip单独安装**: 输入 `pip install jupyter notebook`。 5. **启动Jupyter Notebook**: 安装完成后,打开终端或命令提示符,输入 `jupyter notebook` 或 `jupyter notebook --notebook-dir=path_to_your_directory`,这将启动Web服务器。默认情况下,将在浏览器中看到一个新的页面,显示所有可用的Notebook。 6. **管理Jupyter Notebook**: 可以通过访问 `http://localhost:8888` 来访问你的Jupyter Notebook实例。如果安装在非默认端口,记得查看安装时的日志信息。 如果你遇到任何问题,可以查阅Jupyter Notebook官方文档(https://jupyter.readthedocs.io/en/stable/)或搜索具体的错误信息以获取帮助。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值