我想将 spacy 模型 de_core_news_sm 包含在 python 包中。
这是我的项目:https ://github.com/michaelhochleitner/package_de_core_news_sm 。
我使用以下命令打包并安装项目。
python setup.py sdist bdist_wheel
pip install dist/example-pkg-mh-0.0.1.tar.gz
我想导入模块 example_pkg.import-model.py 。
$ python
>>> import example_pkg.import_model
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/mh/PycharmProjects/packaging_tutorial/example_pkg/import_model.py", line 2, in <module>
import de_core_news_sm
ModuleNotFoundError: No module named 'de_core_news_sm'
如何将模块“de_core_news_sm”包含到包中,以便在运行以下命令后安装它?
pip install dist/example-pkg-mh-0.0.1.tar.gz
梦里花落0921
米琪卡哇伊
相关分类