Numpy 在 Python3 Google App Flexible Engine 中失败
Numpy failing in Python3 Google App Flexible Engine
我在 App Engine (Fleixble) 运行 Python3 中收到以下错误:
ImportError:
Importing the multiarray numpy extension module failed. Most
likely you are trying to import a failed build of numpy.
If you're working with a numpy git repo, try `git clean -xdf` (removes
all files not under version control). Otherwise reinstall numpy.
我上传了 numpy 库 "pip3 install -t /lib numpy" 并将它放在我的需求文件中(不确定这是否正确)。
Requirements.txt:
Flask==1.0.2
gunicorn==19.7.1
numpy==1.15.4
我已经重新安装了 numpy 几次并收到此日志:
Collecting numpy
Using cached
https://files.pythonhosted.org/packages/74/68/2b00ba3c7390354db2a1706291750b6b7e911f6f79c0bd2184ae04f3c6fd/numpy-1.15.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
quandl 3.2.0 has requirement requests<2.18,>=2.7.0, but you'll have
requests 2.19.1 which is incompatible.
Installing collected packages: numpy
Successfully installed numpy-1.15.4
任何帮助将不胜感激:)
编辑:
我遇到过这个 - https://github.com/numpy/numpy/issues/9272
然而,这似乎影响了 Python 3.6.0,而 Python 运行时解释器在 app.yaml
文件中是 3.6.4(由“3”指定)。有关 Google 的 Python 配置的更多信息,请参见此处 - https://cloud.google.com/appengine/docs/flexible/python/runtime
问题是您正在为 macOS 安装内置发行版 ("wheel"),但您尝试使用依赖项的环境不是 macOS。你可以根据文件名来判断:
numpy-1.15.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
您需要明确指定 platform/ABI/implementation Flex 环境需要的选项:
$ pip install \
--target lib \
--python-version 36 \
--platform manylinux1_x86_64 \
--abi cp36m \
--implementation cp \
--only-binary=:all:
numpy
确保从干净的 lib
目录执行此操作,并使用最新版本的 pip
。
我在 App Engine (Fleixble) 运行 Python3 中收到以下错误:
ImportError:
Importing the multiarray numpy extension module failed. Most
likely you are trying to import a failed build of numpy.
If you're working with a numpy git repo, try `git clean -xdf` (removes
all files not under version control). Otherwise reinstall numpy.
我上传了 numpy 库 "pip3 install -t /lib numpy" 并将它放在我的需求文件中(不确定这是否正确)。
Requirements.txt:
Flask==1.0.2
gunicorn==19.7.1
numpy==1.15.4
我已经重新安装了 numpy 几次并收到此日志:
Collecting numpy
Using cached
https://files.pythonhosted.org/packages/74/68/2b00ba3c7390354db2a1706291750b6b7e911f6f79c0bd2184ae04f3c6fd/numpy-1.15.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
quandl 3.2.0 has requirement requests<2.18,>=2.7.0, but you'll have
requests 2.19.1 which is incompatible.
Installing collected packages: numpy
Successfully installed numpy-1.15.4
任何帮助将不胜感激:)
编辑:
我遇到过这个 - https://github.com/numpy/numpy/issues/9272
然而,这似乎影响了 Python 3.6.0,而 Python 运行时解释器在 app.yaml
文件中是 3.6.4(由“3”指定)。有关 Google 的 Python 配置的更多信息,请参见此处 - https://cloud.google.com/appengine/docs/flexible/python/runtime
问题是您正在为 macOS 安装内置发行版 ("wheel"),但您尝试使用依赖项的环境不是 macOS。你可以根据文件名来判断:
numpy-1.15.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
您需要明确指定 platform/ABI/implementation Flex 环境需要的选项:
$ pip install \
--target lib \
--python-version 36 \
--platform manylinux1_x86_64 \
--abi cp36m \
--implementation cp \
--only-binary=:all:
numpy
确保从干净的 lib
目录执行此操作,并使用最新版本的 pip
。