【python报错已解决】`huggingface-hub 0.11.1 requires typing-extensions>=3.7.4.3, but you have typing-extens

在这里插入图片描述

🎬 鸽芷咕个人主页

 🔥 个人专栏: 《C++干货基地》《粉丝福利》

⛺️生活的理想,就是为了理想的生活!

  • 博主简介

博主致力于嵌入式、Python、人工智能、C/C++领域和各种前沿技术的优质博客分享,用最优质的内容带来最舒适的阅读体验!在博客领域获得 C/C++领域优质、CSDN年度征文第一、掘金2023年人气作者、华为云享专家、支付宝开放社区优质博主等头衔。

介绍加入链接
个人社群社群内包含各个方向的开发者,有多年开发经验的大佬,一起监督打卡的创作者,开发者、在校生、考研党、均可加入并且咱每周都会有粉丝福利放送保你有所收获,一起 加入我们 共同进步吧!
个人社区点击即可加入 【咕咕社区】 ,让我们一起共创社区内容,输出优质文章来让你的写作能力更近一步一起加油!

⛳️ 推荐

前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。

专栏介绍

专栏名称专栏介绍
科技杂谈本专栏主要撰写各种科技数码等的评测体验心得,带大家一起体验最前沿的科技机技术产品体验
C++干货基地本专栏主要撰写C++干货内容和编程技巧,让大家从底层了解C++,把更多的知识由抽象到简单通俗易懂。
《数据结构&算法》本专栏主要是注重从底层来给大家一步步剖析数据存储的奥秘,一起解密数据在存储中数据的基本存储结构!
《docker容器精解篇》全面深入解析 docker 容器,从基础到进阶,涵盖原理、操作、实践案例,助您精通 docker。
《linux深造日志》本专栏的标题灵感是来自linux中系统产生的系统日志。而我们也可以每天输出内容不断前进,以达到精深的境地。
《C语言进阶篇》想成为编程高手嘛?来看看《C语言进阶篇》成为编程高手的必学知识,带你一步步认识C语言最核心最底层原理。
写作技巧写作涨粉太慢?不知道如何写博客?想成为一名优质的博主那么这篇专栏你一定要去了解

在这里插入图片描述

引言:遭遇huggingface-hub报错,开发者如何快速反击?❓

在开发过程中,我们经常会遇到各种环境配置和依赖问题。今天,我们将聚焦一个特定的错误:huggingface-hub 0.11.1 requires typing-extensions>=3.7.4.3, but you have typing-extensions 3.7.4。这个错误虽然看似复杂,但其实解决起来非常简单。让我们一起探讨如何迅速解决这个问题。👩‍💻

一、问题描述:遭遇huggingface-hub的版本冲突 🚧

1.1 报错示例:

你正在安装或使用huggingface-hub库,突然终端或命令提示符抛出了以下错误信息:

huggingface-hub 0.11.1 requires typing-extensions>=3.7.4.3, but you have typing-extensions 3.7.4

1.2 报错分析:

这个错误表明你安装的typing-extensions版本不符合huggingface-hub的最低要求。huggingface-hub需要typing-extensions版本3.7.4.3或更高,但你当前安装的是3.7.4

1.3 解决思路:

升级typing-extensions到满足要求的版本即可解决这个问题。

二、解决方法:

2.1 方法一:使用pip升级typing-extensions

打开终端或命令提示符,运行以下命令:

pip install --upgrade typing-extensions

或者,为了确保安装的是最新版本,你可以指定版本号:

pip install typing-extensions>=3.7.4.3

2.2 方法二:使用conda(如果使用conda环境)

如果你使用的是conda环境,可以使用以下命令:

conda update typing-extensions

三、其他解决方法:

如果你遇到权限问题或其他依赖冲突,可以尝试在虚拟环境中重复上述步骤,或者使用pip install --user来避免权限问题。

四、总结

在本文中,我们学习了如何解决huggingface-hubtyping-extensions版本不匹配的问题。记住,当遇到依赖版本冲突时,首先检查错误信息,确定需要升级或降级的具体库,并使用pipconda进行相应的版本控制操作。这样,你就可以轻松地继续你的开发了。🚀

Running command git fetch -q --tags Running command git reset --hard -q cc1be01b97b79b6afb7a35f164d5b2f14b00b50d ERROR: Ignored the following yanked versions: 1.1.0 ERROR: Ignored the following versions that require a different python version: 0.1.9 Requires-Python >=3.10; 0.10.0 Requires-Python >=3.10; 0.10.1 Requires-Python >=3.10; 0.10.2 Requires-Python >=3.10; 0.10.3 Requires-Python >=3.10; 0.10.4 Requires-Python >=3.10; 0.10.5 Requires-Python >=3.10; 0.10.6 Requires-Python >=3.10; 0.11.0 Requires-Python >=3.10; 0.11.0rc3 Requires-Python >=3.10; 0.11.1 Requires-Python >=3.10; 0.11.2 Requires-Python >=3.10; 0.11.3 Requires-Python >=3.10; 0.11.4 Requires-Python >=3.10; 0.12.0rc1 Requires-Python >=3.11; 0.12.0rc2 Requires-Python >=3.11; 0.12.0rc3 Requires-Python >=3.11; 0.12.0rc4 Requires-Python >=3.11; 0.4.31 Requires-Python >=3.10; 0.4.32 Requires-Python >=3.10; 0.4.33 Requires-Python >=3.10; 0.4.34 Requires-Python >=3.10; 0.4.35 Requires-Python >=3.10; 0.4.36 Requires-Python >=3.10; 0.4.37 Requires-Python >=3.10; 0.4.38 Requires-Python >=3.10; 0.44.0 Requires-Python >=3.10; 0.44.0rc1 Requires-Python >=3.10; 0.44.0rc2 Requires-Python >=3.10; 0.5.0 Requires-Python >=3.10; 0.5.1 Requires-Python >=3.10; 0.5.2 Requires-Python >=3.10; 0.5.3 Requires-Python >=3.10; 0.52.0 Requires-Python >=3.6,<3.9; 0.52.0rc3 Requires-Python >=3.6,<3.9; 0.6.0 Requires-Python >=3.10; 0.6.1 Requires-Python >=3.10; 0.6.2 Requires-Python >=3.10; 0.61.0 Requires-Python >=3.10; 0.61.0rc1 Requires-Python >=3.10; 0.61.0rc2 Requires-Python >=3.10; 0.61.1rc1 Requires-Python >=3.10; 0.61.2 Requires-Python >=3.10; 0.7 Requires-Python >=3.6, <3.7; 0.7 Requires-Python ~=2.7, >=3.4; 0.8 Requires-Python >=3.6, <3.7; 0.9.0 Requires-Python >=3.10; 1.10.0 Requires-Python >=3.10; 1.11.0 Requires-Python >=3.10; 1.12.0 Requires-Python >=3.10; 1.12.1 Requires-Python >=3.10; 1.12.2 Requires-Python >=3.10; 1.4.8 Requires-Python >=3.10; 1.6.0 Requires-Python >=3.10; 1.7.0 Requires-Python >=3.10; 1.8.0 Requires-Python >=3.11; 1.9.0 Requires-Python >=3.11; 1.9.1 Requires-Python >=3.11; 1.9.2 Requires-Python >=3.11; 1.9.3 Requires-Python >=3.11; 1.9.4 Requires-Python >=3.10; 2.1.0 Requires-Python >=3.10; 2.1.1 Requires-Python >=3.10; 2.1.2 Requires-Python >=3.10; 2.1.3 Requires-Python >=3.10; 2.2.0 Requires-Python >=3.10; 2.2.0rc1 Requires-Python >=3.10; 2.2.1 Requires-Python >=3.10; 2.2.2 Requires-Python >=3.10; 2.2.3 Requires-Python >=3.10; 2.2.4 Requires-Python >=3.10; 2.2.5 Requires-Python >=3.10; 2.2.6 Requires-Python >=3.10; 2.3.0 Requires-Python >=3.11; 2.3.0rc1 Requires-Python >=3.11; 2.3.1 Requires-Python >=3.11; 3.10.0 Requires-Python >=3.10; 3.10.0rc1 Requires-Python >=3.10; 3.10.1 Requires-Python >=3.10; 3.10.3 Requires-Python >=3.10; 3.3 Requires-Python >=3.10; 3.3rc0 Requires-Python >=3.10; 3.4 Requires-Python >=3.10; 3.4.1 Requires-Python >=3.10; 3.4.2 Requires-Python >=3.10; 3.4rc0 Requires-Python >=3.10; 3.5 Requires-Python >=3.11; 3.5rc0 Requires-Python >=3.11; 8.19.0 Requires-Python >=3.10; 8.2.0 Requires-Python >=3.10; 8.2.1 Requires-Python >=3.10; 8.20.0 Requires-Python >=3.10; 8.21.0 Requires-Python >=3.10; 8.22.0 Requires-Python >=3.10; 8.22.1 Requires-Python >=3.10; 8.22.2 Requires-Python >=3.10; 8.23.0 Requires-Python >=3.10; 8.24.0 Requires-Python >=3.10; 8.25.0 Requires-Python >=3.10; 8.26.0 Requires-Python >=3.10; 8.27.0 Requires-Python >=3.10; 8.28.0 Requires-Python >=3.10; 8.29.0 Requires-Python >=3.10; 8.30.0 Requires-Python >=3.10; 8.31.0 Requires-Python >=3.10; 8.32.0 Requires-Python >=3.10; 8.33.0 Requires-Python >=3.10; 8.34.0 Requires-Python >=3.10; 8.35.0 Requires-Python >=3.10; 8.36.0 Requires-Python >=3.10; 8.37.0 Requires-Python >=3.10; 9.0.0 Requires-Python >=3.11; 9.0.0b1 Requires-Python >=3.11; 9.0.0b2 Requires-Python >=3.11; 9.0.1 Requires-Python >=3.11; 9.0.2 Requires-Python >=3.11; 9.1.0 Requires-Python >=3.11; 9.2.0 Requires-Python >=3.11; 9.3.0 Requires-Python >=3.11 ERROR: Could not find a version that satisfies the requirement nvitop==0.8.1 (from versions: 0.9.0, 0.10.0, 0.10.1, 0.10.2, 0.11.0, 1.0.0, 1.1.1, 1.1.2, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.4.1, 1.4.2, 1.5.0, 1.5.1) ERROR: No matching distribution found for nvitop==0.8.1
最新发布
06-24
(venv) macx@macminixdeMac-mini ai_team % pip install crewai crewai-tools langchain_openai python-dotenv playwright Collecting crewai Downloading crewai-0.5.0-py3-none-any.whl.metadata (10 kB) ERROR: Ignored the following versions that require a different python version: 0.0.1 Requires-Python >=3.11,<4.0; 0.0.10 Requires-Python >=3.10,<=3.13; 0.0.11 Requires-Python >=3.10,<=3.13; 0.0.12 Requires-Python >=3.10,<=3.13; 0.0.14 Requires-Python >=3.10,<=3.13; 0.0.15 Requires-Python >=3.10,<=3.13; 0.0.16 Requires-Python >=3.10,<=3.13; 0.0.2 Requires-Python >=3.10,<3.12; 0.0.3 Requires-Python >=3.10,<3.12; 0.0.5 Requires-Python >=3.10,<=3.13; 0.0.6 Requires-Python >=3.10,<=3.13; 0.0.7 Requires-Python >=3.10,<=3.13; 0.0.9 Requires-Python >=3.10,<=3.13; 0.1.0 Requires-Python >=3.10,<=3.13; 0.1.1 Requires-Python <=3.13,>=3.10; 0.1.2 Requires-Python <=3.13,>=3.10; 0.1.3 Requires-Python <=3.13,>=3.10; 0.1.4 Requires-Python <=3.13,>=3.10; 0.1.5 Requires-Python <=3.13,>=3.10; 0.1.6 Requires-Python <=3.13,>=3.10; 0.1.7 Requires-Python <=3.13,>=3.10; 0.10.0 Requires-Python >=3.10,<4.0; 0.100.0 Requires-Python <3.13,>=3.10; 0.100.1 Requires-Python <3.13,>=3.10; 0.102.0 Requires-Python <3.13,>=3.10; 0.105.0 Requires-Python <3.13,>=3.10; 0.108.0 Requires-Python <3.13,>=3.10; 0.11.0 Requires-Python >=3.10,<4.0; 0.11.1 Requires-Python >=3.10,<4.0; 0.11.2 Requires-Python >=3.10,<4.0; 0.114.0 Requires-Python <3.13,>=3.10; 0.117.0 Requires-Python <3.13,>=3.10; 0.117.1 Requires-Python <3.13,>=3.10; 0.118.0 Requires-Python <3.13,>=3.10; 0.119.0 Requires-Python <3.13,>=3.10; 0.12.0 Requires-Python <=3.13,>=3.10; 0.12.1 Requires-Python <=3.13,>=3.10; 0.13.0 Requires-Python <=3.13,>=3.10; 0.13.1 Requires-Python <=3.13,>=3.10; 0.13.2 Requires-Python <=3.13,>=3.10; 0.13.4 Requires-Python <=3.13,>=3.10; 0.14.0 Requires-Python <=3.13,>=3.10; 0.14.0 Requires-Python >=3.10,<=3.13; 0.14.0rc0 Requires-Python >=3.10,<3.12; 0.14.0rc1 Requires-Python >=3.10,<=3.13; 0.14.1 Requires-Python >=3.10,<=3.13; 0.14.3 Requires-Python >=3.10,<=3.13; 0.14.4 Requires-Python >=3.10,<=3.13; 0.16.0 Requires-Python >=3.10,<=3.13; 0.16.1 Requires-Python >=3.10,<=3.13; 0.16.2 Requires-Python >=3.10,<=3.13; 0.16.3 Requires-Python >=3.10,<=3.13; 0.17.0 Requires-Python <=3.13,>=3.10; 0.17.0 Requires-Python >=3.10,<=3.13; 0.17.0rc0 Requires-Python >=3.10,<=3.13; 0.17.0rc1 Requires-Python >=3.10,<=3.13; 0.17.0rc2 Requires-Python >=3.10,<=3.13; 0.19.0 Requires-Python >=3.10,<=3.13; 0.2.0 Requires-Python <=3.13,>=3.10; 0.2.1 Requires-Python <=3.13,>=3.10; 0.2.2 Requires-Python <=3.13,>=3.10; 0.2.3 Requires-Python <=3.13,>=3.10; 0.2.4 Requires-Python <=3.13,>=3.10; 0.2.5 Requires-Python <=3.13,>=3.10; 0.2.6 Requires-Python <=3.13,>=3.10; 0.22.0 Requires-Python >=3.10,<=3.13; 0.22.2 Requires-Python >=3.10,<=3.13; 0.22.3 Requires-Python >=3.10,<=3.13; 0.22.4 Requires-Python >=3.10,<=3.13; 0.22.5 Requires-Python >=3.10,<=3.13; 0.25.0 Requires-Python <=3.13,>=3.10; 0.25.1 Requires-Python <=3.13,>=3.10; 0.25.2 Requires-Python <=3.13,>=3.10; 0.25.3 Requires-Python <=3.13,>=3.10; 0.25.4 Requires-Python <=3.13,>=3.10; 0.25.5 Requires-Python <=3.13,>=3.10; 0.25.6 Requires-Python <=3.13,>=3.10; 0.25.7 Requires-Python <=3.13,>=3.10; 0.25.8 Requires-Python <=3.13,>=3.10; 0.27.0 Requires-Python <=3.13,>=3.10; 0.27.0rc0 Requires-Python <=3.13,>=3.10; 0.27.0rc1 Requires-Python <=3.13,>=3.10; 0.27.0rc2 Requires-Python <=3.13,>=3.10; 0.27.0rc3 Requires-Python <=3.13,>=3.10; 0.27.1 Requires-Python <=3.13,>=3.10; 0.27.2 Requires-Python <=3.13,>=3.10; 0.28.0 Requires-Python <=3.13,>=3.10; 0.28.1 Requires-Python <=3.13,>=3.10; 0.28.2 Requires-Python <=3.13,>=3.10; 0.28.3 Requires-Python <=3.13,>=3.10; 0.28.4 Requires-Python <=3.13,>=3.10; 0.28.5 Requires-Python <=3.13,>=3.10; 0.28.6 Requires-Python <=3.13,>=3.10; 0.28.7 Requires-Python <=3.13,>=3.10; 0.28.8 Requires-Python <=3.13,>=3.10; 0.28.9rc1 Requires-Python <=3.13,>=3.10; 0.28.9rc2 Requires-Python <=3.13,>=3.10; 0.3.0 Requires-Python <=3.13,>=3.10; 0.30.0 Requires-Python <=3.13,>=3.10; 0.30.0rc1 Requires-Python <=3.13,>=3.10; 0.30.0rc2 Requires-Python <=3.13,>=3.10; 0.30.0rc3 Requires-Python <=3.13,>=3.10; 0.30.0rc4 Requires-Python <=3.13,>=3.10; 0.30.0rc5 Requires-Python <=3.13,>=3.10; 0.30.0rc6 Requires-Python <=3.13,>=3.10; 0.30.0rc7 Requires-Python <=3.13,>=3.10; 0.30.10 Requires-Python <=3.13,>=3.10; 0.30.11 Requires-Python <=3.13,>=3.10; 0.30.4 Requires-Python <=3.13,>=3.10; 0.30.5 Requires-Python <=3.13,>=3.10; 0.30.8 Requires-Python <=3.13,>=3.10; 0.32.0 Requires-Python <=3.13,>=3.10; 0.32.1 Requires-Python <=3.13,>=3.10; 0.32.2 Requires-Python <=3.13,>=3.10; 0.33.0 Requires-Python <=3.13,>=3.10; 0.35.0 Requires-Python <=3.13,>=3.10; 0.35.3 Requires-Python <=3.13,>=3.10; 0.35.4 Requires-Python <=3.13,>=3.10; 0.35.5 Requires-Python <=3.13,>=3.10; 0.35.6 Requires-Python <=3.13,>=3.10; 0.35.7 Requires-Python <=3.13,>=3.10; 0.35.8 Requires-Python <=3.13,>=3.10; 0.36.0 Requires-Python <=3.13,>=3.10; 0.36.1 Requires-Python <=3.13,>=3.10; 0.37.0 Requires-Python <=3.13,>=3.10; 0.38.0 Requires-Python <=3.13,>=3.10; 0.38.1 Requires-Python <=3.13,>=3.10; 0.4.0 Requires-Python <=3.13,>=3.10; 0.4.1 Requires-Python <=3.13,>=3.10; 0.4.25 Requires-Python <=3.13,>=3.10; 0.4.26 Requires-Python <=3.13,>=3.10; 0.4.3 Requires-Python <=3.13,>=3.10; 0.4.4 Requires-Python <=3.13,>=3.10; 0.4.5 Requires-Python <=3.13,>=3.10; 0.4.6 Requires-Python <=3.13,>=3.10; 0.4.7 Requires-Python <=3.13,>=3.10; 0.4.8 Requires-Python <=3.13,>=3.10; 0.40.0 Requires-Python <=3.13,>=3.10; 0.40.1 Requires-Python <=3.13,>=3.10; 0.41.0 Requires-Python <=3.13,>=3.10; 0.41.1 Requires-Python <=3.13,>=3.10; 0.42.0 Requires-Python <=3.13,>=3.10; 0.42.2 Requires-Python <=3.13,>=3.10; 0.43.0 Requires-Python <=3.13,>=3.10; 0.44.0 Requires-Python <=3.13,>=3.10; 0.5.2 Requires-Python >=3.10,<4.0; 0.5.3 Requires-Python >=3.10,<4.0; 0.5.5 Requires-Python >=3.10,<4.0; 0.51.0 Requires-Python <=3.13,>=3.10; 0.51.1 Requires-Python <=3.13,>=3.10; 0.55.0 Requires-Python <=3.13,>=3.10; 0.55.1 Requires-Python <=3.13,>=3.10; 0.55.2 Requires-Python <=3.13,>=3.10; 0.60.0 Requires-Python <=3.13,>=3.10; 0.61.0 Requires-Python <=3.13,>=3.10; 0.63.0 Requires-Python <=3.13,>=3.10; 0.63.1 Requires-Python <=3.13,>=3.10; 0.63.2 Requires-Python <=3.13,>=3.10; 0.63.5 Requires-Python <=3.13,>=3.10; 0.63.6 Requires-Python <=3.13,>=3.10; 0.64.0 Requires-Python <=3.13,>=3.10; 0.65.0 Requires-Python <=3.13,>=3.10; 0.65.1 Requires-Python <=3.13,>=3.10; 0.65.2 Requires-Python <=3.13,>=3.10; 0.66.0 Requires-Python <=3.13,>=3.10; 0.67.0 Requires-Python <=3.13,>=3.10; 0.67.1 Requires-Python <=3.13,>=3.10; 0.70.0 Requires-Python <=3.13,>=3.10; 0.70.1 Requires-Python <=3.13,>=3.10; 0.74.0 Requires-Python <=3.13,>=3.10; 0.74.1 Requires-Python <=3.13,>=3.10; 0.74.2 Requires-Python <=3.13,>=3.10; 0.75.0 Requires-Python <=3.13,>=3.10; 0.75.1 Requires-Python <=3.13,>=3.10; 0.76.0 Requires-Python <=3.13,>=3.10; 0.76.1 Requires-Python <=3.13,>=3.10; 0.76.2 Requires-Python <=3.13,>=3.10; 0.76.9 Requires-Python <=3.13,>=3.10; 0.79.0 Requires-Python <=3.13,>=3.10; 0.79.1 Requires-Python <=3.13,>=3.10; 0.79.2 Requires-Python <=3.13,>=3.10; 0.79.3 Requires-Python <=3.13,>=3.10; 0.79.4 Requires-Python <=3.13,>=3.10; 0.8.0 Requires-Python <=3.13,>=3.10; 0.8.3 Requires-Python <=3.13,>=3.10; 0.80.0 Requires-Python <=3.13,>=3.10; 0.83.0 Requires-Python <=3.13,>=3.10; 0.85.0 Requires-Python <=3.13,>=3.10; 0.86.0 Requires-Python <=3.13,>=3.10; 0.95.0 Requires-Python <3.13,>=3.10; 0.98.0 Requires-Python <3.13,>=3.10 ERROR: Could not find a version that satisfies the requirement crewai-tools (from versions: none) ERROR: No matching distribution found for crewai-tools
05-14
Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: transformers in c:\users\admin\appdata\roaming\python\python311\site-packages (4.30.2) Requirement already satisfied: filelock in c:\users\admin\appdata\roaming\python\python311\site-packages (from transformers) (3.12.2) Requirement already satisfied: huggingface-hub<1.0,>=0.14.1 in c:\users\admin\appdata\roaming\python\python311\site-packages (from transformers) (0.16.4) Requirement already satisfied: numpy>=1.17 in d:\user_cx\software\anaconda3\lib\site-packages (from transformers) (1.24.3) Requirement already satisfied: packaging>=20.0 in d:\user_cx\software\anaconda3\lib\site-packages (from transformers) (23.0) Requirement already satisfied: pyyaml>=5.1 in d:\user_cx\software\anaconda3\lib\site-packages (from transformers) (6.0) Requirement already satisfied: regex!=2019.12.17 in d:\user_cx\software\anaconda3\lib\site-packages (from transformers) (2022.7.9) Requirement already satisfied: requests in d:\user_cx\software\anaconda3\lib\site-packages (from transformers) (2.29.0) Requirement already satisfied: tokenizers!=0.11.3,<0.14,>=0.11.1 in c:\users\admin\appdata\roaming\python\python311\site-packages (from transformers) (0.13.3) Requirement already satisfied: safetensors>=0.3.1 in c:\users\admin\appdata\roaming\python\python311\site-packages (from transformers) (0.3.1) Requirement already satisfied: tqdm>=4.27 in d:\user_cx\software\anaconda3\lib\site-packages (from transformers) (4.65.0) Requirement already satisfied: fsspec in d:\user_cx\software\anaconda3\lib\site-packages (from huggingface-hub<1.0,>=0.14.1->transformers) (2023.3.0) Requirement already satisfied: typing-extensions>=3.7.4.3 in d:\user_cx\software\anaconda3\lib\site-packages (from huggingface-hub<1.0,>=0.14.1->transformers) (4.6.3) Requirement already satisfied: colorama in d:\user_cx\software\anaconda3\lib\site-packages (from tqdm>=4.27->transformers) (0.4.6) Requirement already satisfied: charset-normalizer<4,>=2 in d:\user_cx\software\anaconda3\lib\site-packages (from requests->transformers) (2.0.4) Requirement already satisfied: idna<4,>=2.5 in d:\user_cx\software\anaconda3\lib\site-packages (from requests->transformers) (3.4) Requirement already satisfied: urllib3<1.27,>=1.21.1 in d:\user_cx\software\anaconda3\lib\site-packages (from requests->transformers) (1.26.16) Requirement already satisfied: certifi>=2017.4.17 in d:\user_cx\software\anaconda3\lib\site-packages (from requests->transformers) (2023.5.7)
07-16
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

鸽芷咕

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值