【错误记录】安装 向量数据库 chromadb 报错 ( ValueError: check_hostname ...

打印 上一主题 下一主题

主题 1807|帖子 1807|积分 5421

一、错误记录



执行 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


完整报错信息 :
  1. C:\Users\octop>pip install chromadb
  2. ERROR: Exception:
  3. Traceback (most recent call last):
  4.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\cli\base_command.py", line 173, in _main
  5.     status = self.run(options, args)
  6.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\cli\req_command.py", line 203, in wrapper
  7.     return func(self, options, args)
  8.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\commands\install.py", line 315, in run
  9.     requirement_set = resolver.resolve(
  10.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\resolver.py", line 94, in resolve
  11.     result = self._result = resolver.resolve(
  12.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\resolvelib\resolvers.py", line 472, in resolve
  13.     state = resolution.resolve(requirements, max_rounds=max_rounds)
  14.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\resolvelib\resolvers.py", line 341, in resolve
  15.     self._add_to_criteria(self.state.criteria, r, parent=None)
  16.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\resolvelib\resolvers.py", line 172, in _add_to_criteria
  17.     if not criterion.candidates:
  18.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\resolvelib\structs.py", line 151, in __bool__
  19.     return bool(self._sequence)
  20.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py", line 140, in __bool__
  21.     return any(self)
  22.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py", line 128, in <genexpr>
  23.     return (c for c in iterator if id(c) not in self._incompatible_ids)
  24.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.py", line 29, in _iter_built
  25.     for version, func in infos:
  26.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\resolution\resolvelib\factory.py", line 272, in iter_index_candidate_infos
  27.     result = self._finder.find_best_candidate(
  28.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\package_finder.py", line 851, in find_best_candidate
  29.     candidates = self.find_all_candidates(project_name)
  30.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\package_finder.py", line 798, in find_all_candidates
  31.     page_candidates = list(page_candidates_it)
  32.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\sources.py", line 134, in page_candidates
  33.     yield from self._candidates_from_page(self._link)
  34.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\package_finder.py", line 758, in process_project_url
  35.     html_page = self._link_collector.fetch_page(project_url)
  36.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\collector.py", line 490, in fetch_page
  37.     return _get_html_page(location, session=self.session)
  38.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\collector.py", line 400, in _get_html_page
  39.     resp = _get_html_response(url, session=session)
  40.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\index\collector.py", line 115, in _get_html_response
  41.     resp = session.get(
  42.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\requests\sessions.py", line 555, in get
  43.     return self.request('GET', url, **kwargs)
  44.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_internal\network\session.py", line 454, in request
  45.     return super().request(method, url, *args, **kwargs)
  46.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\requests\sessions.py", line 542, in request
  47.     resp = self.send(prep, **send_kwargs)
  48.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\requests\sessions.py", line 655, in send
  49.     r = adapter.send(request, **kwargs)
  50.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\cachecontrol\adapter.py", line 53, in send
  51.     resp = super(CacheControlAdapter, self).send(request, **kw)
  52.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\requests\adapters.py", line 439, in send
  53.     resp = conn.urlopen(
  54.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\connectionpool.py", line 696, in urlopen
  55.     self._prepare_proxy(conn)
  56.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\connectionpool.py", line 964, in _prepare_proxy
  57.     conn.connect()
  58.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\connection.py", line 359, in connect
  59.     conn = self._connect_tls_proxy(hostname, conn)
  60.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\connection.py", line 500, in _connect_tls_proxy
  61.     return ssl_wrap_socket(
  62.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\util\ssl_.py", line 453, in ssl_wrap_socket
  63.     ssl_sock = _ssl_wrap_socket_impl(sock, context, tls_in_tls)
  64.   File "D:\001_Develop\022_Python\Python39\lib\site-packages\pip\_vendor\urllib3\util\ssl_.py", line 495, in _ssl_wrap_socket_impl
  65.     return ssl_context.wrap_socket(sock)
  66.   File "D:\001_Develop\022_Python\Python39\lib\ssl.py", line 500, in wrap_socket
  67.     return self.sslsocket_class._create(
  68.   File "D:\001_Develop\022_Python\Python39\lib\ssl.py", line 997, in _create
  69.     raise ValueError("check_hostname requires server_hostname")
  70. ValueError: check_hostname requires server_hostname
  71. C:\Users\octop>
复制代码




二、问题分析



这是 网络署理 出现的问题 , 参考如下解决方案 :


  • 查抄署理设置 : 假如 当前的网络情况中 利用了署理 , 需要精确设置 pip 工具的署理 :
  1. # 临时设置代理(示例)
  2. pip install chromadb --proxy=http://user:password@proxy_server:port
  3. # 通过环境变量配置代理
  4. set HTTP_PROXY=http://user:password@proxy_server:port
  5. set HTTPS_PROXY=http://user:password@proxy_server:port
复制代码


  • 升级 pip 和 工具 : 确保 pip、setuptools、wheel是最新版 ;
  1. python -m pip install --upgrade pip setuptools wheel
复制代码


  • 利用国内的PyPI镜像加速下载(如清华源、阿里云) :
  1. pip install chromadb -i https://pypi.tuna.tsinghua.edu.cn/simple
复制代码




三、解决方案



之前安装 chromadb 包 太慢 , 10KB 每秒的下载速率 , 打开了 魔法 下载依赖很快 , 但是最后执行后报错 , 关闭魔法后 , 安装乐成 ;


完整的下令行输出 , 仅做参考 , 非必要不开打开该代码块 :
  1. C:\Users\octop>pip install chromadb
  2. Collecting chromadb
  3.   Downloading chromadb-0.6.3-py3-none-any.whl (611 kB)
  4.      |████████████████████████████████| 611 kB 233 kB/s
  5. Collecting opentelemetry-api>=1.2.0
  6.   Downloading opentelemetry_api-1.30.0-py3-none-any.whl (64 kB)
  7.      |████████████████████████████████| 64 kB 270 kB/s
  8. Requirement already satisfied: httpx>=0.27.0 in d:\001_develop\022_python\python39\lib\site-packages (from chromadb) (0.27.0)
  9. Requirement already satisfied: pydantic>=1.9 in d:\001_develop\022_python\python39\lib\site-packages (from chromadb) (2.7.4)
  10. Collecting kubernetes>=28.1.0
  11.   Downloading kubernetes-32.0.1-py2.py3-none-any.whl (2.0 MB)
  12.      |████████████████████████████████| 2.0 MB 819 kB/s
  13. Collecting uvicorn[standard]>=0.18.3
  14.   Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB)
  15.      |████████████████████████████████| 62 kB 1.2 MB/s
  16. Collecting grpcio>=1.58.0
  17.   Downloading grpcio-1.70.0-cp39-cp39-win_amd64.whl (4.3 MB)
  18.      |████████████████████████████████| 4.3 MB 2.2 MB/s
  19. Collecting PyYAML>=6.0.0
  20.   Downloading PyYAML-6.0.2-cp39-cp39-win_amd64.whl (162 kB)
  21.      |████████████████████████████████| 162 kB 3.3 MB/s
  22. Collecting numpy>=1.22.5
  23.   Downloading numpy-2.0.2-cp39-cp39-win_amd64.whl (15.9 MB)
  24.      |████████████████████████████████| 15.9 MB 3.3 MB/s
  25. Collecting opentelemetry-instrumentation-fastapi>=0.41b0
  26.   Downloading opentelemetry_instrumentation_fastapi-0.51b0-py3-none-any.whl (12 kB)
  27. Collecting mmh3>=4.0.1
  28.   Downloading mmh3-5.1.0-cp39-cp39-win_amd64.whl (41 kB)
  29.      |████████████████████████████████| 41 kB ...
  30. Collecting importlib-resources
  31.   Downloading importlib_resources-6.5.2-py3-none-any.whl (37 kB)
  32. Collecting tokenizers>=0.13.2
  33.   Downloading tokenizers-0.21.0-cp39-abi3-win_amd64.whl (2.4 MB)
  34.      |████████████████████████████████| 2.4 MB 6.8 MB/s
  35. Collecting overrides>=7.3.1
  36.   Using cached overrides-7.7.0-py3-none-any.whl (17 kB)
  37. Collecting rich>=10.11.0
  38.   Downloading rich-13.9.4-py3-none-any.whl (242 kB)
  39.      |████████████████████████████████| 242 kB 6.4 MB/s
  40. Collecting typer>=0.9.0
  41.   Downloading typer-0.15.2-py3-none-any.whl (45 kB)
  42.      |████████████████████████████████| 45 kB 1.3 MB/s
  43. Collecting fastapi>=0.95.2
  44.   Downloading fastapi-0.115.11-py3-none-any.whl (94 kB)
  45.      |████████████████████████████████| 94 kB 1.7 MB/s
  46. Collecting bcrypt>=4.0.1
  47.   Downloading bcrypt-4.3.0-cp39-abi3-win_amd64.whl (152 kB)
  48.      |████████████████████████████████| 152 kB ...
  49. Requirement already satisfied: tqdm>=4.65.0 in d:\001_develop\022_python\python39\lib\site-packages (from chromadb) (4.66.4)
  50. Collecting build>=1.0.3
  51.   Downloading build-1.2.2.post1-py3-none-any.whl (22 kB)
  52. Collecting opentelemetry-exporter-otlp-proto-grpc>=1.2.0
  53.   Downloading opentelemetry_exporter_otlp_proto_grpc-1.30.0-py3-none-any.whl (18 kB)
  54. Collecting pypika>=0.48.9
  55.   Using cached PyPika-0.48.9.tar.gz (67 kB)
  56.   Installing build dependencies ... done
  57.   Getting requirements to build wheel ... done
  58.     Preparing wheel metadata ... done
  59. Collecting orjson>=3.9.12
  60.   Downloading orjson-3.10.15-cp39-cp39-win_amd64.whl (133 kB)
  61.      |████████████████████████████████| 133 kB 6.4 MB/s
  62. Requirement already satisfied: typing_extensions>=4.5.0 in d:\001_develop\022_python\python39\lib\site-packages (from chromadb) (4.12.2)
  63. Collecting chroma-hnswlib==0.7.6
  64.   Downloading chroma_hnswlib-0.7.6-cp39-cp39-win_amd64.whl (151 kB)
  65.      |████████████████████████████████| 151 kB ...
  66. Collecting onnxruntime>=1.14.1
  67.   Downloading onnxruntime-1.19.2-cp39-cp39-win_amd64.whl (11.1 MB)
  68.      |████████████████████████████████| 11.1 MB 3.3 MB/s
  69. Collecting posthog>=2.4.0
  70.   Using cached posthog-3.18.0-py2.py3-none-any.whl (76 kB)
  71. Collecting opentelemetry-sdk>=1.2.0
  72.   Downloading opentelemetry_sdk-1.30.0-py3-none-any.whl (118 kB)
  73.      |████████████████████████████████| 118 kB 6.8 MB/s
  74. Collecting tenacity>=8.2.3
  75.   Downloading tenacity-9.0.0-py3-none-any.whl (28 kB)
  76. Collecting pyproject_hooks
  77.   Downloading pyproject_hooks-1.2.0-py3-none-any.whl (10 kB)
  78. Requirement already satisfied: colorama in d:\001_develop\022_python\python39\lib\site-packages (from build>=1.0.3->chromadb) (0.4.6)
  79. Collecting packaging>=19.1
  80.   Downloading packaging-24.2-py3-none-any.whl (65 kB)
  81.      |████████████████████████████████| 65 kB 4.8 MB/s
  82. Collecting importlib-metadata>=4.6
  83.   Downloading importlib_metadata-8.6.1-py3-none-any.whl (26 kB)
  84. Collecting tomli>=1.1.0
  85.   Downloading tomli-2.2.1-py3-none-any.whl (14 kB)
  86. Collecting starlette<0.47.0,>=0.40.0
  87.   Downloading starlette-0.46.0-py3-none-any.whl (71 kB)
  88.      |████████████████████████████████| 71 kB 5.5 MB/s
  89. Requirement already satisfied: httpcore==1.* in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (1.0.5)
  90. Requirement already satisfied: certifi in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (2024.6.2)
  91. Requirement already satisfied: anyio in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (4.4.0)
  92. Requirement already satisfied: idna in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (3.7)
  93. Requirement already satisfied: sniffio in d:\001_develop\022_python\python39\lib\site-packages (from httpx>=0.27.0->chromadb) (1.3.1)
  94. 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)
  95. Collecting zipp>=3.20
  96.   Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB)
  97. Collecting websocket-client!=0.40.0,!=0.41.*,!=0.42.*,>=0.32.0
  98.   Downloading websocket_client-1.8.0-py3-none-any.whl (58 kB)
  99.      |████████████████████████████████| 58 kB 4.1 MB/s
  100. Collecting google-auth>=1.0.1
  101.   Downloading google_auth-2.38.0-py2.py3-none-any.whl (210 kB)
  102.      |████████████████████████████████| 210 kB 3.3 MB/s
  103. Collecting oauthlib>=3.2.2
  104.   Using cached oauthlib-3.2.2-py3-none-any.whl (151 kB)
  105. Collecting python-dateutil>=2.5.3
  106.   Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
  107. Collecting urllib3>=1.24.2
  108.   Downloading urllib3-2.3.0-py3-none-any.whl (128 kB)
  109.      |████████████████████████████████| 128 kB 6.8 MB/s
  110. Collecting requests-oauthlib
  111.   Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB)
  112. Collecting requests
  113.   Downloading requests-2.32.3-py3-none-any.whl (64 kB)
  114.      |████████████████████████████████| 64 kB 4.5 MB/s
  115. Collecting six>=1.9.0
  116.   Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)
  117. Collecting durationpy>=0.7
  118.   Downloading durationpy-0.9-py3-none-any.whl (3.5 kB)
  119. Collecting rsa<5,>=3.1.4
  120.   Using cached rsa-4.9-py3-none-any.whl (34 kB)
  121. Collecting pyasn1-modules>=0.2.1
  122.   Downloading pyasn1_modules-0.4.1-py3-none-any.whl (181 kB)
  123.      |████████████████████████████████| 181 kB 6.8 MB/s
  124. Collecting cachetools<6.0,>=2.0.0
  125.   Downloading cachetools-5.5.2-py3-none-any.whl (10 kB)
  126. Collecting protobuf
  127.   Downloading protobuf-5.29.3-cp39-cp39-win_amd64.whl (434 kB)
  128.      |████████████████████████████████| 434 kB 6.4 MB/s
  129. Collecting sympy
  130.   Downloading sympy-1.13.3-py3-none-any.whl (6.2 MB)
  131.      |████████████████████████████████| 6.2 MB 3.3 MB/s
  132. Collecting coloredlogs
  133.   Using cached coloredlogs-15.0.1-py2.py3-none-any.whl (46 kB)
  134. Collecting flatbuffers
  135.   Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB)
  136. Collecting deprecated>=1.2.6
  137.   Downloading Deprecated-1.2.18-py2.py3-none-any.whl (10.0 kB)
  138. Collecting importlib-metadata>=4.6
  139.   Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB)
  140. Collecting wrapt<2,>=1.10
  141.   Downloading wrapt-1.17.2-cp39-cp39-win_amd64.whl (38 kB)
  142. Collecting opentelemetry-exporter-otlp-proto-common==1.30.0
  143.   Downloading opentelemetry_exporter_otlp_proto_common-1.30.0-py3-none-any.whl (18 kB)
  144. Collecting opentelemetry-proto==1.30.0
  145.   Downloading opentelemetry_proto-1.30.0-py3-none-any.whl (55 kB)
  146.      |████████████████████████████████| 55 kB 3.8 MB/s
  147. Collecting googleapis-common-protos~=1.52
  148.   Downloading googleapis_common_protos-1.68.0-py2.py3-none-any.whl (164 kB)
  149.      |████████████████████████████████| 164 kB 6.4 MB/s
  150. Collecting opentelemetry-instrumentation==0.51b0
  151.   Downloading opentelemetry_instrumentation-0.51b0-py3-none-any.whl (30 kB)
  152. Collecting opentelemetry-util-http==0.51b0
  153.   Downloading opentelemetry_util_http-0.51b0-py3-none-any.whl (7.3 kB)
  154. Collecting opentelemetry-semantic-conventions==0.51b0
  155.   Downloading opentelemetry_semantic_conventions-0.51b0-py3-none-any.whl (177 kB)
  156.      |████████████████████████████████| 177 kB 6.4 MB/s
  157. Collecting opentelemetry-instrumentation-asgi==0.51b0
  158.   Downloading opentelemetry_instrumentation_asgi-0.51b0-py3-none-any.whl (16 kB)
  159. Collecting asgiref~=3.0
  160.   Downloading asgiref-3.8.1-py3-none-any.whl (23 kB)
  161. 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)
  162. Collecting monotonic>=1.5
  163.   Using cached monotonic-1.6-py2.py3-none-any.whl (8.2 kB)
  164. Collecting backoff>=1.10.0
  165.   Using cached backoff-2.2.1-py3-none-any.whl (15 kB)
  166. Collecting pyasn1<0.7.0,>=0.4.6
  167.   Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB)
  168.      |████████████████████████████████| 83 kB 6.1 MB/s
  169. 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)
  170. 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)
  171. Collecting charset-normalizer<4,>=2
  172.   Downloading charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl (102 kB)
  173.      |████████████████████████████████| 102 kB 6.8 MB/s
  174. Collecting markdown-it-py>=2.2.0
  175.   Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)
  176.      |████████████████████████████████| 87 kB 6.1 MB/s
  177. Collecting pygments<3.0.0,>=2.13.0
  178.   Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB)
  179.      |████████████████████████████████| 1.2 MB 6.4 MB/s
  180. Collecting mdurl~=0.1
  181.   Using cached mdurl-0.1.2-py3-none-any.whl (10.0 kB)
  182. 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)
  183. Collecting huggingface-hub<1.0,>=0.16.4
  184.   Downloading huggingface_hub-0.29.1-py3-none-any.whl (468 kB)
  185.      |████████████████████████████████| 468 kB 6.4 MB/s
  186. Collecting fsspec>=2023.5.0
  187.   Downloading fsspec-2025.2.0-py3-none-any.whl (184 kB)
  188.      |████████████████████████████████| 184 kB 6.4 MB/s
  189. Collecting filelock
  190.   Downloading filelock-3.17.0-py3-none-any.whl (16 kB)
  191. Collecting click>=8.0.0
  192.   Using cached click-8.1.8-py3-none-any.whl (98 kB)
  193. Collecting shellingham>=1.3.0
  194.   Using cached shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
  195. Collecting watchfiles>=0.13
  196.   Downloading watchfiles-1.0.4-cp39-cp39-win_amd64.whl (284 kB)
  197.      |████████████████████████████████| 284 kB ...
  198. Collecting httptools>=0.6.3
  199.   Downloading httptools-0.6.4-cp39-cp39-win_amd64.whl (89 kB)
  200.      |████████████████████████████████| 89 kB 6.1 MB/s
  201. Collecting python-dotenv>=0.13
  202.   Downloading python_dotenv-1.0.1-py3-none-any.whl (19 kB)
  203. Collecting websockets>=10.4
  204.   Downloading websockets-15.0-cp39-cp39-win_amd64.whl (176 kB)
  205.      |████████████████████████████████| 176 kB 6.8 MB/s
  206. Collecting humanfriendly>=9.1
  207.   Using cached humanfriendly-10.0-py2.py3-none-any.whl (86 kB)
  208. Collecting pyreadline3
  209.   Downloading pyreadline3-3.5.4-py3-none-any.whl (83 kB)
  210.      |████████████████████████████████| 83 kB 5.8 MB/s
  211. Collecting mpmath<1.4,>=1.1.0
  212.   Using cached mpmath-1.3.0-py3-none-any.whl (536 kB)
  213. Building wheels for collected packages: pypika
  214.   Building wheel for pypika (PEP 517) ... done
  215.   Created wheel for pypika: filename=pypika-0.48.9-py2.py3-none-any.whl size=53885 sha256=4287a8e7c79c8272bdacb57dcd1132f309217ecf3279deeb53e0902e5f13dd09
  216.   Stored in directory: c:\users\octop\appdata\local\pip\cache\wheels\f7\02\64\d541eac67ec459309d1fb19e727f58ecf7ffb4a8bf42d4cfe5
  217. Successfully built pypika
  218. 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
  219. 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
  220. WARNING: You are using pip version 21.2.3; however, version 25.0.1 is available.
  221. You should consider upgrading via the 'D:\001_Develop\022_Python\Python39\python.exe -m pip install --upgrade pip' command.
  222. C:\Users\octop>
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

道家人

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表