15
6

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.

scipy.misc.imread の import エラー

Posted at

実行コード

import scipy.misc
scipy.misc.imread

エラーログ

AttributeError                            Traceback (most recent call last)
<ipython-input-16-d0d6bba8d490> in <module>()
      1 import scipy.misc
----> 2 scipy.misc.imread

AttributeError: 'module' object has no attribute 'imread'

改善策

$ pip install scipy==1.1.0
$ python -m pip install pillow
15
6
1

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
15
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?