一、错误记录
执行 pip install chromadb 下令 , 安装 chromadb 向量数据库 , 报错 ;
核心报错信息 :
File “D:\001_Develop\022_Python\Python39\lib\ssl.py”, line 997, in _create
raise ValueError(“check_hostname requires server_hostname”)
ValueError: check_hostname requires server_hostname
完整报错信息 :
- C:\Users\octop>pip install chromadb
- ERROR: Exception:
- Traceback (most recent call last):
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\cli\base_command.py", line 173, in _main
- status = self.run(options, args)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\cli\req_command.py", line 203, in wrapper
- return func(self, options, args)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\commands\install.py", line 315, in run
- requirement_set = resolver.resolve(
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\resolver.py", line 94, in resolve
- result = self._result = resolver.resolve(
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\resolvelib\resolvers.py", line 472, in resolve
- state = resolution.resolve(requirements, max_rounds=max_rounds)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\resolvelib\resolvers.py", line 341, in resolve
- self._add_to_criteria(self.state.criteria, r, parent=None)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\resolvelib\resolvers.py", line 172, in _add_to_criteria
- if not criterion.candidates:
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\resolvelib\structs.py", line 151, in __bool__
- return bool(self._sequence)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py", line 140, in __bool__
- return any(self)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py", line 128, in <genexpr>
- return (c for c in iterator if id(c) not in self._incompatible_ids)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py", line 29, in _iter_built
- for version, func in infos:
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\factory.py", line 272, in iter_index_candidate_infos
- result = self._finder.find_best_candidate(
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\package_finder.py", line 851, in find_best_candidate
- candidates = self.find_all_candidates(project_name)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\package_finder.py", line 798, in find_all_candidates
- page_candidates = list(page_candidates_it)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\sources.py", line 134, in page_candidates
- yield from self._candidates_from_page(self._link)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\package_finder.py", line 758, in process_project_url
- html_page = self._link_collector.fetch_page(project_url)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\collector.py", line 490, in fetch_page
- return _get_html_page(location, session=self.session)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\collector.py", line 400, in _get_html_page
- resp = _get_html_response(url, session=session)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\collector.py", line 115, in _get_html_response
- resp = session.get(
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\requests\sessions.py", line 555, in get
- return self.request('GET', url, **kwargs)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\network\session.py", line 454, in request
- return super().request(method, url, *args, **kwargs)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\requests\sessions.py", line 542, in request
- resp = self.send(prep, **send_kwargs)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\requests\sessions.py", line 655, in send
- r = adapter.send(request, **kwargs)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\cachecontrol\adapter.py", line 53, in send
- resp = super(CacheControlAdapter, self).send(request, **kw)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\requests\adapters.py", line 439, in send
- resp = conn.urlopen(
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\connectionpool.py", line 696, in urlopen
- self._prepare_proxy(conn)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\connectionpool.py", line 964, in _prepare_proxy
- conn.connect()
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\connection.py", line 359, in connect
- conn = self._connect_tls_proxy(hostname, conn)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\connection.py", line 500, in _connect_tls_proxy
- return ssl_wrap_socket(
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\util\ssl_.py", line 453, in ssl_wrap_socket
- ssl_sock = _ssl_wrap_socket_impl(sock, context, tls_in_tls)
- File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\util\ssl_.py", line 495, in _ssl_wrap_socket_impl
- return ssl_context.wrap_socket(sock)
- File "D:\001_Develop\022_Python\Python39\lib\ssl.py", line 500, in wrap_socket
- return self.sslsocket_class._create(
- File "D:\001_Develop\022_Python\Python39\lib\ssl.py", line 997, in _create
- raise ValueError("check_hostname requires server_hostname")
- ValueError: check_hostname requires server_hostname
- C:\Users\octop>
复制代码
二、问题分析
这是 网络署理 出现的问题 , 参考如下解决方案 :
- 查抄署理设置 : 假如 当前的网络情况中 利用了署理 , 需要精确设置 pip 工具的署理 :
- # 临时设置代理(示例)
- pip install chromadb --proxy=http://user:password@proxy_server:port
- # 通过环境变量配置代理
- set HTTP_PROXY=http://user:password@proxy_server:port
- set HTTPS_PROXY=http://user:password@proxy_server:port
复制代码
- 升级 pip 和 工具 : 确保 pip、setuptools、wheel是最新版 ;
- python -m pip install --upgrade pip setuptools wheel
复制代码
- 利用国内的PyPI镜像加速下载(如清华源、阿里云) :
- pip install chromadb -i https://pypi.tuna.tsinghua.edu.cn/simple
复制代码
三、解决方案
之前安装 chromadb 包 太慢 , 10KB 每秒的下载速率 , 打开了 魔法 下载依赖很快 , 但是最后执行后报错 , 关闭魔法后 , 安装乐成 ;
完整的下令行输出 , 仅做参考 , 非必要不开打开该代码块 :
- C:\Users\octop>pip install chromadb
- Collecting chromadb
- Downloading chromadb-0.6.3-py3-none-any.whl (611 kB)
- |████████████████████████████████| 611 kB 233 kB/s
- Collecting opentelemetry-api>=1.2.0
- Downloading opentelemetry_api-1.30.0-py3-none-any.whl (64 kB)
- |████████████████████████████████| 64 kB 270 kB/s
- Requirement already satisfied: httpx>=0.27.0 in d:\001_develop\022_python\python39\lib\site-packages (from chromadb) (0.27.0)
- Requirement already satisfied: pydantic>=1.9 in d:\001_develop\022_python\python39\lib\site-packages (from chromadb) (2.7.4)
- Collecting kubernetes>=28.1.0
- Downloading kubernetes-32.0.1-py2.py3-none-any.whl (2.0 MB)
- |████████████████████████████████| 2.0 MB 819 kB/s
- Collecting uvicorn[standard]>=0.18.3
- Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB)
- |████████████████████████████████| 62 kB 1.2 MB/s
- Collecting grpcio>=1.58.0
- Downloading grpcio-1.70.0-cp39-cp39-win_amd64.whl (4.3 MB)
- |████████████████████████████████| 4.3 MB 2.2 MB/s
- Collecting PyYAML>=6.0.0
- Downloading PyYAML-6.0.2-cp39-cp39-win_amd64.whl (162 kB)
- |████████████████████████████████| 162 kB 3.3 MB/s
- Collecting numpy>=1.22.5
- Downloading numpy-2.0.2-cp39-cp39-win_amd64.whl (15.9 MB)
- |████████████████████████████████| 15.9 MB 3.3 MB/s
- Collecting opentelemetry-instrumentation-fastapi>=0.41b0
- Downloading opentelemetry_instrumentation_fastapi-0.51b0-py3-none-any.whl (12 kB)
- Collecting mmh3>=4.0.1
- Downloading mmh3-5.1.0-cp39-cp39-win_amd64.whl (41 kB)
- |████████████████████████████████| 41 kB ...
- Collecting importlib-resources
- Downloading importlib_resources-6.5.2-py3-none-any.whl (37 kB)
- Collecting tokenizers>=0.13.2
- Downloading tokenizers-0.21.0-cp39-abi3-win_amd64.whl (2.4 MB)
- |████████████████████████████████| 2.4 MB 6.8 MB/s
- Collecting overrides>=7.3.1
- Using cached overrides-7.7.0-py3-none-any.whl (17 kB)
- Collecting rich>=10.11.0
- Downloading rich-13.9.4-py3-none-any.whl (242 kB)
- |████████████████████████████████| 242 kB 6.4 MB/s
- Collecting typer>=0.9.0
- Downloading typer-0.15.2-py3-none-any.whl (45 kB)
- |████████████████████████████████| 45 kB 1.3 MB/s
- Collecting fastapi>=0.95.2
- Downloading fastapi-0.115.11-py3-none-any.whl (94 kB)
- |████████████████████████████████| 94 kB 1.7 MB/s
- Collecting bcrypt>=4.0.1
- Downloading bcrypt-4.3.0-cp39-abi3-win_amd64.whl (152 kB)
- |████████████████████████████████| 152 kB ...
- Requirement already satisfied: tqdm>=4.65.0 in d:\001_develop\022_python\python39\lib\site-packages (from chromadb) (4.66.4)
- Collecting build>=1.0.3
- Downloading build-1.2.2.post1-py3-none-any.whl (22 kB)
- Collecting opentelemetry-exporter-otlp-proto-grpc>=1.2.0
- Downloading opentelemetry_exporter_otlp_proto_grpc-1.30.0-py3-none-any.whl (18 kB)
- Collecting pypika>=0.48.9
- Using cached PyPika-0.48.9.tar.gz (67 kB)
- Installing build dependencies ... done
- Getting requirements to build wheel ... done
- Preparing wheel metadata ... done
- Collecting orjson>=3.9.12
- Downloading orjson-3.10.15-cp39-cp39-win_amd64.whl (133 kB)
- |████████████████████████████████| 133 kB 6.4 MB/s
- Requirement already satisfied: typing_extensions>=4.5.0 in d:\001_develop\022_python\python39\lib\site-packages (from chromadb) (4.12.2)
- Collecting chroma-hnswlib==0.7.6
- Downloading chroma_hnswlib-0.7.6-cp39-cp39-win_amd64.whl (151 kB)
- |████████████████████████████████| 151 kB ...
- Collecting onnxruntime>=1.14.1
- Downloading onnxruntime-1.19.2-cp39-cp39-win_amd64.whl (11.1 MB)
- |████████████████████████████████| 11.1 MB 3.3 MB/s
- Collecting posthog>=2.4.0
- Using cached posthog-3.18.0-py2.py3-none-any.whl (76 kB)
- Collecting opentelemetry-sdk>=1.2.0
- Downloading opentelemetry_sdk-1.30.0-py3-none-any.whl (118 kB)
- |████████████████████████████████| 118 kB 6.8 MB/s
- Collecting tenacity>=8.2.3
- Downloading tenacity-9.0.0-py3-none-any.whl (28 kB)
- Collecting pyproject_hooks
- Downloading pyproject_hooks-1.2.0-py3-none-any.whl (10 kB)
- Requirement already satisfied: colorama in d:\001_develop\022_python\python39\lib\site-packages (from build>=1.0.3->chromadb) (0.4.6)
- Collecting packaging>=19.1
- Downloading packaging-24.2-py3-none-any.whl (65 kB)
- |████████████████████████████████| 65 kB 4.8 MB/s
- Collecting importlib-metadata>=4.6
- Downloading importlib_metadata-8.6.1-py3-none-any.whl (26 kB)
- Collecting tomli>=1.1.0
- Downloading tomli-2.2.1-py3-none-any.whl (14 kB)
- Collecting starlette<0.47.0,>=0.40.0
- Downloading starlette-0.46.0-py3-none-any.whl (71 kB)
- |████████████████████████████████| 71 kB 5.5 MB/s
- Requirement already satisfied: httpcore==1.* in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (1.0.5)
- Requirement already satisfied: certifi in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (2024.6.2)
- Requirement already satisfied: anyio in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (4.4.0)
- Requirement already satisfied: idna in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (3.7)
- Requirement already satisfied: sniffio in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (1.3.1)
- Requirement already satisfied: h11<0.15,>=0.13 in d:\001_develop\022_python\python39\lib\site-packages (from httpcore==1.*->httpx>=0.27.0->chromadb) (0.14.0)
- Collecting zipp>=3.20
- Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB)
- Collecting websocket-client!=0.40.0,!=0.41.*,!=0.42.*,>=0.32.0
- Downloading websocket_client-1.8.0-py3-none-any.whl (58 kB)
- |████████████████████████████████| 58 kB 4.1 MB/s
- Collecting google-auth>=1.0.1
- Downloading google_auth-2.38.0-py2.py3-none-any.whl (210 kB)
- |████████████████████████████████| 210 kB 3.3 MB/s
- Collecting oauthlib>=3.2.2
- Using cached oauthlib-3.2.2-py3-none-any.whl (151 kB)
- Collecting python-dateutil>=2.5.3
- Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
- Collecting urllib3>=1.24.2
- Downloading urllib3-2.3.0-py3-none-any.whl (128 kB)
- |████████████████████████████████| 128 kB 6.8 MB/s
- Collecting requests-oauthlib
- Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB)
- Collecting requests
- Downloading requests-2.32.3-py3-none-any.whl (64 kB)
- |████████████████████████████████| 64 kB 4.5 MB/s
- Collecting six>=1.9.0
- Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)
- Collecting durationpy>=0.7
- Downloading durationpy-0.9-py3-none-any.whl (3.5 kB)
- Collecting rsa<5,>=3.1.4
- Using cached rsa-4.9-py3-none-any.whl (34 kB)
- Collecting pyasn1-modules>=0.2.1
- Downloading pyasn1_modules-0.4.1-py3-none-any.whl (181 kB)
- |████████████████████████████████| 181 kB 6.8 MB/s
- Collecting cachetools<6.0,>=2.0.0
- Downloading cachetools-5.5.2-py3-none-any.whl (10 kB)
- Collecting protobuf
- Downloading protobuf-5.29.3-cp39-cp39-win_amd64.whl (434 kB)
- |████████████████████████████████| 434 kB 6.4 MB/s
- Collecting sympy
- Downloading sympy-1.13.3-py3-none-any.whl (6.2 MB)
- |████████████████████████████████| 6.2 MB 3.3 MB/s
- Collecting coloredlogs
- Using cached coloredlogs-15.0.1-py2.py3-none-any.whl (46 kB)
- Collecting flatbuffers
- Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB)
- Collecting deprecated>=1.2.6
- Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB)
- Collecting importlib-metadata>=4.6
- Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB)
- Collecting wrapt<2,>=1.10
- Downloading wrapt-1.17.2-cp39-cp39-win_amd64.whl (38 kB)
- Collecting opentelemetry-exporter-otlp-proto-common==1.30.0
- Downloading opentelemetry_exporter_otlp_proto_common-1.30.0-py3-none-any.whl (18 kB)
- Collecting opentelemetry-proto==1.30.0
- Downloading opentelemetry_proto-1.30.0-py3-none-any.whl (55 kB)
- |████████████████████████████████| 55 kB 3.8 MB/s
- Collecting googleapis-common-protos~=1.52
- Downloading googleapis_common_protos-1.68.0-py2.py3-none-any.whl (164 kB)
- |████████████████████████████████| 164 kB 6.4 MB/s
- Collecting opentelemetry-instrumentation==0.51b0
- Downloading opentelemetry_instrumentation-0.51b0-py3-none-any.whl (30 kB)
- Collecting opentelemetry-util-http==0.51b0
- Downloading opentelemetry_util_http-0.51b0-py3-none-any.whl (7.3 kB)
- Collecting opentelemetry-semantic-conventions==0.51b0
- Downloading opentelemetry_semantic_conventions-0.51b0-py3-none-any.whl (177 kB)
- |████████████████████████████████| 177 kB 6.4 MB/s
- Collecting opentelemetry-instrumentation-asgi==0.51b0
- Downloading opentelemetry_instrumentation_asgi-0.51b0-py3-none-any.whl (16 kB)
- Collecting asgiref~=3.0
- Downloading asgiref-3.8.1-py3-none-any.whl (23 kB)
- Requirement already satisfied: distro>=1.5.0 in d:\001_develop\022_python\python39\lib\site-packages (from posthog>=2.4.0->chromadb) (1.9.0)
- Collecting monotonic>=1.5
- Using cached monotonic-1.6-py2.py3-none-any.whl (8.2 kB)
- Collecting backoff>=1.10.0
- Using cached backoff-2.2.1-py3-none-any.whl (15 kB)
- Collecting pyasn1<0.7.0,>=0.4.6
- Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB)
- |████████████████████████████████| 83 kB 6.1 MB/s
- Requirement already satisfied: annotated-types>=0.4.0 in d:\001_develop\022_python\python39\lib\site-packages (from pydantic>=1.9->chromadb) (0.7.0)
- Requirement already satisfied: pydantic-core==2.18.4 in d:\001_develop\022_python\python39\lib\site-packages (from pydantic>=1.9->chromadb) (2.18.4)
- Collecting charset-normalizer<4,>=2
- Downloading charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl (102 kB)
- |████████████████████████████████| 102 kB 6.8 MB/s
- Collecting markdown-it-py>=2.2.0
- Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)
- |████████████████████████████████| 87 kB 6.1 MB/s
- Collecting pygments<3.0.0,>=2.13.0
- Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB)
- |████████████████████████████████| 1.2 MB 6.4 MB/s
- Collecting mdurl~=0.1
- Using cached mdurl-0.1.2-py3-none-any.whl (10.0 kB)
- Requirement already satisfied: exceptiongroup>=1.0.2 in d:\001_develop\022_python\python39\lib\site-packages (from anyio->httpx>=0.27.0->chromadb) (1.2.1)
- Collecting huggingface-hub<1.0,>=0.16.4
- Downloading huggingface_hub-0.29.1-py3-none-any.whl (468 kB)
- |████████████████████████████████| 468 kB 6.4 MB/s
- Collecting fsspec>=2023.5.0
- Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB)
- |████████████████████████████████| 184 kB 6.4 MB/s
- Collecting filelock
- Downloading filelock-3.17.0-py3-none-any.whl (16 kB)
- Collecting click>=8.0.0
- Using cached click-8.1.8-py3-none-any.whl (98 kB)
- Collecting shellingham>=1.3.0
- Using cached shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
- Collecting watchfiles>=0.13
- Downloading watchfiles-1.0.4-cp39-cp39-win_amd64.whl (284 kB)
- |████████████████████████████████| 284 kB ...
- Collecting httptools>=0.6.3
- Downloading httptools-0.6.4-cp39-cp39-win_amd64.whl (89 kB)
- |████████████████████████████████| 89 kB 6.1 MB/s
- Collecting python-dotenv>=0.13
- Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB)
- Collecting websockets>=10.4
- Downloading websockets-15.0-cp39-cp39-win_amd64.whl (176 kB)
- |████████████████████████████████| 176 kB 6.8 MB/s
- Collecting humanfriendly>=9.1
- Using cached humanfriendly-10.0-py2.py3-none-any.whl (86 kB)
- Collecting pyreadline3
- Downloading pyreadline3-3.5.4-py3-none-any.whl (83 kB)
- |████████████████████████████████| 83 kB 5.8 MB/s
- Collecting mpmath<1.4,>=1.1.0
- Using cached mpmath-1.3.0-py3-none-any.whl (536 kB)
- Building wheels for collected packages: pypika
- Building wheel for pypika (PEP 517) ... done
- Created wheel for pypika: filename=pypika-0.48.9-py2.py3-none-any.whl size=53885 sha256=4287a8e7c79c8272bdacb57dcd1132f309217ecf3279deeb53e0902e5f13dd09
- Stored in directory: c:\users\octop\appdata\local\pip\cache\wheels\f7\02\64\d541eac67ec459309d1fb19e727f58ecf7ffb4a8bf42d4cfe5
- Successfully built pypika
- Installing collected packages: zipp, wrapt, importlib-metadata, deprecated, opentelemetry-api, urllib3, pyreadline3, pyasn1, protobuf, packaging, opentelemetry-semantic-conventions, mdurl, charset-normalizer, six, rsa, requests, PyYAML, pygments, pyasn1-modules, opentelemetry-util-http, opentelemetry-proto, opentelemetry-instrumentation, oauthlib, mpmath, markdown-it-py, humanfriendly, fsspec, filelock, click, cachetools, asgiref, websockets, websocket-client, watchfiles, uvicorn, tomli, sympy, starlette, shellingham, rich, requests-oauthlib, python-dotenv, python-dateutil, pyproject-hooks, opentelemetry-sdk, opentelemetry-instrumentation-asgi, opentelemetry-exporter-otlp-proto-common, numpy, monotonic, huggingface-hub, httptools, grpcio, googleapis-common-protos, google-auth, flatbuffers, durationpy, coloredlogs, backoff, typer, tokenizers, tenacity, pypika, posthog, overrides, orjson, opentelemetry-instrumentation-fastapi, opentelemetry-exporter-otlp-proto-grpc, onnxruntime, mmh3, kubernetes, importlib-resources, fastapi, chroma-hnswlib, build, bcrypt, chromadb
- Successfully installed PyYAML-6.0.2 asgiref-3.8.1 backoff-2.2.1 bcrypt-4.3.0 build-1.2.2.post1 cachetools-5.5.2 charset-normalizer-3.4.1 chroma-hnswlib-0.7.6 chromadb-0.6.3 click-8.1.8 coloredlogs-15.0.1 deprecated-1.2.18 durationpy-0.9 fastapi-0.115.11 filelock-3.17.0 flatbuffers-25.2.10 fsspec-2025.2.0 google-auth-2.38.0 googleapis-common-protos-1.68.0 grpcio-1.70.0 httptools-0.6.4 huggingface-hub-0.29.1 humanfriendly-10.0 importlib-metadata-8.5.0 importlib-resources-6.5.2 kubernetes-32.0.1 markdown-it-py-3.0.0 mdurl-0.1.2 mmh3-5.1.0 monotonic-1.6 mpmath-1.3.0 numpy-2.0.2 oauthlib-3.2.2 onnxruntime-1.19.2 opentelemetry-api-1.30.0 opentelemetry-exporter-otlp-proto-common-1.30.0 opentelemetry-exporter-otlp-proto-grpc-1.30.0 opentelemetry-instrumentation-0.51b0 opentelemetry-instrumentation-asgi-0.51b0 opentelemetry-instrumentation-fastapi-0.51b0 opentelemetry-proto-1.30.0 opentelemetry-sdk-1.30.0 opentelemetry-semantic-conventions-0.51b0 opentelemetry-util-http-0.51b0 orjson-3.10.15 overrides-7.7.0 packaging-24.2 posthog-3.18.0 protobuf-5.29.3 pyasn1-0.6.1 pyasn1-modules-0.4.1 pygments-2.19.1 pypika-0.48.9 pyproject-hooks-1.2.0 pyreadline3-3.5.4 python-dateutil-2.9.0.post0 python-dotenv-1.0.1 requests-2.32.3 requests-oauthlib-2.0.0 rich-13.9.4 rsa-4.9 shellingham-1.5.4 six-1.17.0 starlette-0.46.0 sympy-1.13.3 tenacity-9.0.0 tokenizers-0.21.0 tomli-2.2.1 typer-0.15.2 urllib3-2.3.0 uvicorn-0.34.0 watchfiles-1.0.4 websocket-client-1.8.0 websockets-15.0 wrapt-1.17.2 zipp-3.21.0
- WARNING: You are using pip version 21.2.3; however, version 25.0.1 is available.
- You should consider upgrading via the 'D:\001_Develop\022_Python\Python39\python.exe -m pip install --upgrade pip' command.
- C:\Users\octop>
复制代码 免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |