8
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

import cv2 で謎の"ImportError"が出た...[OpenCV for Python3]

Posted at

Python3で"ImportError: numpy.core.multiarray failed to import"が出たら

解決策は、numpyをアップグレードすればいい。

ターミナル
pip install -U numpy

それでもダメなら、pipをアップグレードした後で、
もう一度、numpyをアップグレードしてみる。

pip install --upgrade pip
pip install numpy --upgrade
# or
pip install -U numpy

なお、それでもダメならば、再インストールすればいい。

参照URL: ImportError: numpy.core.multiarray failed to import

8
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?