1

我正在尝试在 Google Cloud ML Engine 上运行 keras 模型,但它没有运行,因为它找不到依赖项。也就是说,它是TA-lib。错误如下:

talib/common.c:242:28: fatal error: ta-lib/ta_defs.h: No such file or directory

我的 setup.py 文件中的 install_requires 如下所示:

setup(name='dnd31',
  version='0.1',
  packages=find_packages(),
  description='example to run keras on gcloud ml-engine',
  author='me',
  author_email='author@example.com',
  license='MIT',
  install_requires=[
      'keras',
      'h5py',
       'pandas',
       'ta-lib',
       'TA-Lib'],
  zip_safe=False)

我能够在本地运行它就好了。除了 setup.py 文件之外,还有更好的方法来包含依赖项吗?

4

0 回答 0