NUMPY1.19是否与Python3.6和pandas 1.15配合使用?如果不是,我必须使用什么版本?

af7jpaap  于 2021-09-08  发布在  Java
关注(0)|答案(1)|浏览(525)

我面临的错误是:

  1. Unable to import module 'lambda_function': Unable to import required dependencies:
  2. numpy:
  3. IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
  4. Importing the numpy C-extensions failed. This error can happen for
  5. many reasons, often due to issues with your setup or how NumPy was
  6. installed.
  7. Please note and check the following:
  8. * The Python version is: Python3.6 from "/var/lang/bin/python3.6"
  9. * The NumPy version is: "1.19.0"
  10. Original error was: No module named 'numpy.core._multiarray_umath'

请帮助我知道我需要做什么来解决这个问题

9q78igpj

9q78igpj1#

只需运行命令:importnumpynumpy--upgrage
您可以通过以下方式检查版本:print(numpy.version)

相关问题