猿问

如何让 numpy 在 Anaconda Python 3.7.6 中正常工作

我正在尝试在 Python 中使用 NumPy。我刚刚安装了 Anaconda Python 3.7,一切似乎都很顺利。但是,我无法导入 numpy(使用行import numpy)。当我这样做时,出现以下错误:


    C:\Users\jsmith\anaconda3\lib\site-packages\numpy\__init__.py:140: UserWarning: mkl-service package failed to import, therefore Intel(R) MKL initialization ensuring its correct out-of-the box operation under condition when Gnu OpenMP had already been loaded by Python process is not assured. Please install mkl-service package, see http://github.com/IntelPython/mkl-service

  from . import _distributor_init

Traceback (most recent call last):

  File "C:\Users\jsmith\anaconda3\lib\site-packages\numpy\core\__init__.py", line 24, in <module>

    from . import multiarray

  File "C:\Users\jsmith\anaconda3\lib\site-packages\numpy\core\multiarray.py", line 14, in <module>

    from . import overrides

  File "C:\Users\jsmith\anaconda3\lib\site-packages\numpy\core\overrides.py", line 7, in <module>

    from numpy.core._multiarray_umath import (

ImportError: DLL load failed: The specified module could not be found.


During handling of the above exception, another exception occurred:


Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

  File "C:\Users\jsmith\anaconda3\lib\site-packages\numpy\__init__.py", line 142, in <module>

    from . import core

  File "C:\Users\jsmith\anaconda3\lib\site-packages\numpy\core\__init__.py", line 54, in <module>

    raise ImportError(msg)

ImportError:


我可以在 Anaconda Navigator 的环境选项卡中看到它,当我尝试在 Eclipse(Pydev) 中使用它时,它显示在强制内置函数下。我查看了我的 PYTHONPATH,我在 Eclipse 中的环境和我的基本 python 目录 (jsmith/anaconda3) 都在其中。我已经尝试导入我在强制内置函数下看到的其他库,这些库工作正常,但 numpy 似乎是唯一有问题的库。打电话pip install numpy告诉我它已经安装了 1.18.1 版本。我查看了这个conda create -n test numpy python=3.7 --no-default-packages堆栈溢出页面,并在 anaconda 提示符下运行了 answer() 中的第一个命令。这行得通,然后我意识到测试是针对这个问题的,于是尝试了 base,但得到了这个错误:


CondaValueError: The target prefix is the base prefix. Aborting.

然而打电话conda activate base什么也没做。


杨魅力
浏览 121回答 3
3回答

宝慕林4294392

正如@cel 在评论中提到的,卸载并重新安装 numpy 使用pip uninstall numpy并pip install numpy使其工作。

慕沐林林

我更好的方法是import osimport sysos.path.dirname(sys.executable)这将为您提供通往环境的路径。将路径放入python的设置中

素胚勾勒不出你

打开 Anaconda Prompt:然后,您必须转到要在 PowerBI 中使用的 Conda 环境。我有一个“临时”环境,所以我首先在“Anaconda Prompt”中激活它:(base)&nbsp;C:\Users\ashish>conda&nbsp;activate&nbsp;temp然后转到安装文件夹中包含“PowerBI”可执行文件的目录:(temp)&nbsp;C:\Users\ashish>cd&nbsp;"C:\Program&nbsp;Files\Microsoft&nbsp;Power&nbsp;BI&nbsp;Desktop\bin"然后,我从提示中启动 PowerBI:(temp)&nbsp;C:\Program&nbsp;Files\Microsoft&nbsp;Power&nbsp;BI&nbsp;Desktop\bin>PBIDesktop.exe这修复了您遇到的 NumPy 错误。如果您希望任何其他包与 PowerBI 一起使用,请在相应的“Conda 环境”(在我的例子中是“temp”)中安装该包。确保 Python 主目录 (Anaconda3) 也已添加到 Python 脚本部分的“Power BI Desktop”全局选项中。
随时随地看视频慕课网APP

相关分类

Python
我要回答