首页 > 其他分享 >Pip - Installing plotly stuck

Pip - Installing plotly stuck

时间:2025-01-15 11:43:55浏览次数:1  
标签:penv none frank py3 Installing stuck duckdb plotly Pip

pip install -i https://pypi.org/simple package_name
pip install -i https://pypi.python.org/simple package_name
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple package_name

 

(duckdb_penv) frank@ZZHPC:/mnt/d/ZZHUBT/workspace/duckdb_penv$ pip install -i https://pypi.python.org/simple plotly --verbose
Using pip 24.3.1 from /mnt/d/ZZHUBT/workspace/duckdb_penv/lib/python3.12/site-packages/pip (python 3.12)
Looking in indexes: https://pypi.python.org/simple
Collecting plotly
  Obtaining dependency information for plotly from https://files.pythonhosted.org/packages/e5/ae/580600f441f6fc05218bd6c9d5794f4aef072a7d9093b291f1c50a9db8bc/plotly-5.24.1-py3-none-any.whl.metadata
  Downloading plotly-5.24.1-py3-none-any.whl.metadata (7.3 kB)
Requirement already satisfied: tenacity>=6.2.0 in ./lib/python3.12/site-packages (from plotly) (9.0.0)
Requirement already satisfied: packaging in ./lib/python3.12/site-packages (from plotly) (24.2)
Downloading plotly-5.24.1-py3-none-any.whl (19.1 MB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.1/19.1 MB 3.2 MB/s eta 0:00:00
Installing collected packages: plotly
^CERROR: Operation cancelled by user
(duckdb_penv) frank@ZZHPC:/mnt/d/ZZHUBT/workspace/duckdb_penv/lib/python3.12/site-packages$ rm -rf plotly _plotly_future_ _plotly_utils jupyterlab_plotly plotly-5.24.1.dist-info

 

(duckdb_penv) frank@ZZHPC:/mnt/d/ZZHUBT/workspace/duckdb_penv/lib/python3.12/site-packages$ pip install -i https://pypi.tuna.tsinghua.edu.cn/simple plotly --verbose
Using pip 24.3.1 from /mnt/d/ZZHUBT/workspace/duckdb_penv/lib/python3.12/site-packages/pip (python 3.12)
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Collecting plotly
  Downloading https://pypi.tuna.tsinghua.edu.cn/packages/e5/ae/580600f441f6fc05218bd6c9d5794f4aef072a7d9093b291f1c50a9db8bc/plotly-5.24.1-py3-none-any.whl (19.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.1/19.1 MB 3.5 MB/s eta 0:00:00
Requirement already satisfied: tenacity>=6.2.0 in /mnt/d/ZZHUBT/workspace/duckdb_penv/lib/python3.12/site-packages (from plotly) (9.0.0)
Requirement already satisfied: packaging in /mnt/d/ZZHUBT/workspace/duckdb_penv/lib/python3.12/site-packages (from plotly) (24.2)
Installing collected packages: plotly
^CERROR: Operation cancelled by user
(duckdb_penv) frank@ZZHPC:/mnt/d/ZZHUBT/workspace/duckdb_penv/lib/python3.12/site-packages$ rm -rf plotly _plotly_future_ _plotly_utils jupyterlab_plotly plotly-5.24.1.dist-info

 

Other packages can be installed normally.

Finally, the installation succeeded, it just took too long, about 15 minutes.

(duckdb_penv) frank@ZZHPC:/mnt/d/ZZHUBT/workspace$ pip download plotly
Collecting plotly
  Using cached plotly-5.24.1-py3-none-any.whl.metadata (7.3 kB)
Collecting tenacity>=6.2.0 (from plotly)
  Downloading tenacity-9.0.0-py3-none-any.whl.metadata (1.2 kB)
Collecting packaging (from plotly)
  Downloading packaging-24.2-py3-none-any.whl.metadata (3.2 kB)
Using cached plotly-5.24.1-py3-none-any.whl (19.1 MB)
Downloading tenacity-9.0.0-py3-none-any.whl (28 kB)
Downloading packaging-24.2-py3-none-any.whl (65 kB)
Saved ./plotly-5.24.1-py3-none-any.whl
Saved ./tenacity-9.0.0-py3-none-any.whl
Saved ./packaging-24.2-py3-none-any.whl
Successfully downloaded plotly tenacity packaging
(duckdb_penv) frank@ZZHPC:/mnt/d/ZZHUBT/workspace$ lh
total 19M
drwxrwxrwx 1 frank frank 4.0K Jan  9 12:55 ZZHTEST
drwxrwxrwx 1 frank frank 4.0K Jan  9 15:44 duckdb
drwxrwxrwx 1 frank frank 4.0K Jan 14 17:35 ..
drwxrwxrwx 1 frank frank 4.0K Jan 15 09:37 duckdb_penv
-rwxrwxrwx 1 frank frank  19M Jan 15 11:22 plotly-5.24.1-py3-none-any.whl
-rwxrwxrwx 1 frank frank  28K Jan 15 11:22 tenacity-9.0.0-py3-none-any.whl
drwxrwxrwx 1 frank frank 4.0K Jan 15 11:22 .
-rwxrwxrwx 1 frank frank  64K Jan 15 11:22 packaging-24.2-py3-none-any.whl
(duckdb_penv) frank@ZZHPC:/mnt/d/ZZHUBT/workspace$ pip install plotly-5.24.1-py3-none-any.whl
Processing ./plotly-5.24.1-py3-none-any.whl
Requirement already satisfied: tenacity>=6.2.0 in ./duckdb_penv/lib/python3.12/site-packages (from plotly==5.24.1) (9.0.0)
Requirement already satisfied: packaging in ./duckdb_penv/lib/python3.12/site-packages (from plotly==5.24.1) (24.2)
Installing collected packages: plotly
Successfully installed plotly-5.24.1
(duckdb_penv) frank@ZZHPC:/mnt/d/ZZHUBT/workspace$

 

标签:penv,none,frank,py3,Installing,stuck,duckdb,plotly,Pip
From: https://www.cnblogs.com/zhangzhihui/p/18672728

相关文章

  • Pipe pg walkthrough Intermediate
    NAMP┌──(root?kali)-[~]└─#nmap-p--A192.168.128.45StartingNmap7.95(https://nmap.org)at2025-01-1407:03UTCStats:0:00:40elapsed;0hostscompleted(1up),1undergoingScriptScanNSETiming:About99.30%done;ETC:07:04(0:00:00remainin......
  • python 更新pip镜像源
    前言默认情况下pip使用的是国外的镜像,在下载的时候速度非常慢,下载速度是几kb或者几十kb,花费的时间比较长。解决办法国内目前有些机构或者公司整理了对应的镜像源,使得通过内网就能访问即可,下载速度达到几百kb或者几M,速度对比而言简直一个天上,一个地下。国内源:阿里云:http://m......
  • 5.5.1 IPIPE劫持系统调用的流程与场景
    点击查看系列文章=》 InterruptPipeline系列文章大纲-CSDN博客原创不易,需要大家多多鼓励!您的关注、点赞、收藏就是我的创作动力!5.5IPIPE:Xenomai/Linux双核系统调用5.5.1IPIPE劫持系统调用的流程与场景参考《5.1.2内核层:ARM64Linux系统调用的流程》,先回顾一下ARM6......
  • screenpipe - 全天候录制屏幕的 AI 助手
    7800Stars423Forks78Issues26贡献者MITLicenseRust语言代码:GitHub-mediar-ai/screenpipe:library&platformtobuild,distribute,monetizeaiappsthathavethefullcontext(likerewind,granola,etc.),opensource,100%local,developerfrien......
  • jenkins入门13--pipeline
    Jenkins-pipeline(1)-基础为什么要使用pipeline代码:pipeline以代码的形式实现,通过被捡入源代码控制,使团队能够编译,审查和迭代其cd流程可连续性:jenkins重启或者中断后都不会影响pipelinejob停顿:pipeline可以选择停止并等待人工输入或者批准,然后在继续pipeline运行......
  • CICD Day8、Pipeline实现网站项目的自动发布
    为了更好的理解Pipeline脚本和cicd流程,本次将使用一个java语言开发的用户信息管理系统进行实践项目源代码的仓库的地址为http://172.16.99.82:88/root/java-web-demo.git1Pipeline脚本基本结构我们将Pipeline脚本的构建过程分为拉取代码、代码编译、构建镜像、部署到K8s......
  • CICD Day7、Jenkins Pipeline 常用指令及Pipeline快捷生成方式(片段生成器)
    1、常用指令在编写Pipeline脚本时,会涉及各种指令,这些指令用于实现构建过程中的不同功能。熟悉这些指令后,编写一个完整的Pipeline脚本将变得十分简单1.1shsh指令用于执行shell命令,配置示例如下stage('Build'){stage{sh'hostname'}}在上述配置中,在构建......
  • CICD Day5、Jenkins pipline
    在创建web-demo项目的时候,使用的是freestyleproject自由风格项目类型。此外,jenkins还提供了pipline项目类型(又称流水线),它具有以下特点:基于代码的描述:通过代码描述整个构建过程,pipline脚本可以被存储在代码仓库中进行版本管理。团队成员还可以通过查看脚本来了解整个软件交付......
  • pip 离线包下载一些方法
    有些时候我们需要进行离线下载pip包,方法很多,以下简单说明几种方法pipdownload会包含依赖,比较推荐的方法pipdownloadrequests-d./offline_packagespipwheel可以下载whl格式的包,但是只是单一包,缺少依赖相关的pipwheelrequests-w./offline_wheels直接在pypip网......
  • 智能驾驶——11.03 摄像头图像处理Pipeline
    0Preface    前文<摄像头传感器基本概念>已经提到摄像头数据通过<摄像头传感器接口>传输到AD域控制器中,进行进一步的数据处理并提供给算法进行环境识别也就是“感知”环节。摄像头数据进入SOC后有一套流水线进行图像数据处理,SOC设计采用的图像芯片IP不同,所以参与图像......