Python 2.7 找不到运行Google Cloud ML引擎Keras模型(ta lib)的库

Python 2.7 找不到运行Google Cloud ML引擎Keras模型(ta lib)的库,python-2.7,google-app-engine,keras,google-cloud-ml,ta-lib,Python 2.7,Google App Engine,Keras,Google Cloud Ml,Ta Lib,我正试图在Google Cloud ML引擎上运行keras模型,但它没有运行,因为它找不到依赖项。也就是说,它是。错误如下: talib/common.c:242:28: fatal error: ta-lib/ta_defs.h: No such file or directory my setup.py文件中的安装要求如下所示: setup(name='dnd31', version='0.1', packages=find_packages(), description='

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

talib/common.c:242:28: fatal error: ta-lib/ta_defs.h: No such file or directory
my setup.py文件中的安装要求如下所示:

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文件之外,还有更好的方法包含依赖项吗