0

我正在尝试使用命令 python -m spacy download fr_core_news_md 下载 Spacy 的法语模块,但出现错误:

Traceback (most recent call last):
  File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\runpy.py", line 184, in _run_module_as_main
    mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
  File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\runpy.py", line 143, in _get_module_details
    return _get_module_details(pkg_main_name, error)
  File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\runpy.py", line 110, in _get_module_details
    __import__(pkg_name)
  File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\site-packages\spacy\__init__.py", line 12, in <module>
    from . import pipeline
  File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\site-packages\spacy\pipeline\__init__.py", line 4, in <module>
    from .pipes import Tagger, DependencyParser, EntityRecognizer, EntityLinker
  File "pipes.pyx", line 1, in init spacy.pipeline.pipes
ImportError: DLL load failed while importing nn_parser: The specified module could not be found.

如何解决?

Windows 10*64 上的 Python 3.8.2(64 位)

谢谢!

4

2 回答 2

1

我设法通过在我的 Windows 机器上安装 Visual C++ redist 来修复这个错误。 https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads

于 2020-09-04T08:27:04.253 回答
0

我还设法通过安装 MS VC redist 包来解决这个问题。如果你使用,巧克力:https ://chocolatey.org/packages/vcredist140

choco install vcredist140
于 2020-10-03T23:38:02.433 回答