无法在代理后面安装Spacy语言模型,获得错误SSL:cetide_verify_failed

发布于 2025-01-18 22:31:22 字数 675 浏览 0 评论 0 原文

我正在尝试在具有代理防火墙的公司计算机(Windows 10)上安装en_core_web_sm。我已经尝试使用Conda终端命令从本地目录下载软件包并安装:

python -m pip install ./ en_core_web_sm-3.0.0.0.0.tar.gz

这是本文的答案:

,但我仍然在SSL上遇到相同的错误:证书_verify_failed。我的问题是为什么从本地文件夹安装时仍会检查SSL。

此外,是否有一种直接加载下载的语言模型软件包的直接方法?我已经解压缩文件并保存在我的工作目录中,然后在我的python代码中写下了:

nlp = spacy.load(“/en_core_web_sm-3.0.0.0.0/”)

也没有工作。有关于无法找到模型'en/core_web_sm-3.0.0'的错误。

感谢您的帮助。

I'm trying to install en_core_web_sm on my company computer (Windows 10) which has proxy firewall. I've tried downloading the package and install from local directory using conda terminal command:

python -m pip install ./en_core_web_sm-3.0.0.tar.gz

which is an answer from this post: SSL: CERTIFICATE_VERIFY_FAILED error while downloading python -m spacy download en

But I still get the same error on SSL: CERTIFICATE_VERIFY_FAILED. My question is why is SSL still being checked when installing from local folder.

In addition, is there a direct way to simply load the downloaded language model package? I've unzip the files and save in my working directory, and I wrote this in my python code:

nlp = spacy.load("/en_core_web_sm-3.0.0/")

This also didn't work. Got an error about Can't find the model 'en/core_web_sm-3.0.0'.

Thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿港巷口少年归 2025-01-25 22:31:22

是的,您可以直接下载.whl或.gz文件,然后从本地路径安装。请注意,由于Spacy模型在技术上是Python软件包,因此您需要使用本地文件中的PIP安装,然后在Python代码中正常加载它。

对于您的模型此文件使用可能比版本3.0.0更好。

Yes, you can download the .whl or .gz file directly and install from a local path. Note that since SpaCy models technically are python packages you need to install it with pip from the local file and afterwards load it normally in your python code.

For your model this file is the more current one which is probably better to use than version 3.0.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文