我已经构建了一个我想用作Anki添加的脚本。我的脚本使用Pandas
,但Anki只附带一些裸骨模块,因此我认为我需要在我的附加软件包中包含Pandas
及其依赖项。但是,我遇到了一些问题,需要一些帮助。
我创建了一个文件夹(我们称之为my_folder
),其中包含Pandas
,其依赖项和__init__.py
文件,并将该文件夹放入Anki插件文件夹中。然后在我想要的应用程序的脚本中,我尝试导入Pandas
from my_folder import pandas
但我收到错误
ImportError: Missing required dependencies ['numpy']
当我打开Anki时,尽管文件夹中包含numpy
。
然后我试了
from my_folder import numpy
from my_folder import pandas
并收到此错误:
Error importing numpy: you should not try to import numpy from its source directory; please exit the numpy source tree, and relaunch your python interpreter from there.
我一直在尝试寻找使用Pandas
或Numpy
的其他插件,而我发现的只是一个用于numpy
的插件但不再使用{旧套餐不可用。因此,我知道可以做到,我只是无法弄清楚自己是怎么做的。