Не могу импортировать numpy из pycharm - PullRequest
2 голосов
/ 08 января 2020

У меня есть Anaconda3. Когда я использую его интерпретатор из Pycharm или непосредственно из папки для импорта numpy, я получаю следующую ошибку:

ImportError                               Traceback (most recent call last)
~\Anaconda\lib\site-packages\numpy\core\__init__.py in <module>
     16 try:
---> 17     from . import multiarray
     18 except ImportError as exc:

~\Anaconda\lib\site-packages\numpy\core\multiarray.py in <module>
     13
---> 14 from . import overrides
     15 from . import _multiarray_umath

~\Anaconda\lib\site-packages\numpy\core\overrides.py in <module>
      6
----> 7 from numpy.core._multiarray_umath import (
      8     add_docstring, implement_array_function, _get_implementing_args)

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

During handling of the above exception, another exception occurred:

ImportError                               Traceback (most recent call last)
<ipython-input-1-d4cdadb62aa7> in <module>
----> 1 import numpy

~\Anaconda\lib\site-packages\numpy\__init__.py in <module>
    140     from . import _distributor_init
    141
--> 142     from . import core
    143     from .core import *
    144     from . import compat

~\Anaconda\lib\site-packages\numpy\core\__init__.py in <module>
     45 """ % (sys.version_info[0], sys.version_info[1], sys.executable,
     46         __version__, exc)
---> 47     raise ImportError(msg)
     48 finally:
     49     for envkey in env_added:

ImportError:

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy c-extensions failed.
- Try uninstalling and reinstalling numpy.
- If you have already done that, then:
  1. Check that you expected to use Python3.7 from "C:\Users\noamw\Anaconda\python.exe",
     and that you have no directories in your PATH or PYTHONPATH that can
     interfere with the Python and numpy version "1.17.4" you're trying to use.
  2. If (1) looks fine, you can open a new issue at
     https://github.com/numpy/numpy/issues.  Please include details on:
     - how you installed Python
     - how you installed numpy
     - your operating system
     - whether or not you have multiple versions of Python installed
     - if you built from source, your compiler versions and ideally a build log

- If you're working with a numpy git repository, try `git clean -xdf`
  (removes all files not under version control) and rebuild numpy.

Note: this error has many possible causes, so please don't comment on
an existing issue about this - open a new one instead.

Original error was: DLL load failed: The specified module could not be found.

Однако, когда я использую его из i python после активации моей среды, используя conda , это работает просто отлично. Это действительно расстраивает, что я не могу создать такой проект Pycharm. Буду очень признателен за любую помощь Спасибо

1 Ответ

2 голосов
/ 08 января 2020

Настройка вашей среды в качестве интерпретатора для PyCharm должна работать. Получил Preferences -> Project -> Project Interpreter. В раскрывающемся меню выберите вашу среду conda. Установите его на что-то вроде: ~/Anaconda3/envs/myenvname/bin/python

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...