我正在尝试使用使用 tensorflow 的 Chalice 框架部署 AWS 功能,但它给了我以下错误“TypeError: parse() got an unexpected keyword argument 'transport_encoding'
代码很简单:
from chalice import Chalice
import tensorflow as tf
app = Chalice(app_name='demotensor')
@app.route('/')
def index():
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
return {'hello': 'world'}
当我运行“chalice local”命令时,它在本地正常工作,但是当我尝试部署“chalice deploy”时,它给了我一个错误。
requirements.txt 包括:
张量流==1.3.0
注意:我使用的是 windows,我已经安装了带有 Python 3.6 的 Anaconda 5.0,没有 GPU 的 tensorflow