我试图在Openshift上部署Python应用程序,但我一直收到以下错误
ImportError:没有名为' gridfs'
的模块
这是setup.py文件
from setuptools import setup
setup(name='YourAppName',
version='1.0',
description='OpenShift App',
author='Your Name',
author_email='example@example.com',
url='https://www.python.org/community/sigs/current/distutils-sig',
install_requires=['Flask>=0.7.2', 'MarkupSafe','pymongo','Pillow', 'python-pymongo'],
)
答案 0 :(得分:1)
如果有,
ImportError:没有名为“ gridfs”的模块
然后跑步
python -m pip install pymongo
或
python3 -m pip install pymongo