31
12

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.

Python:[pip install requests]実行時の[matplotlib 1.3.1 requires nose, which is not installed.]の対処方法

Last updated at Posted at 2018-06-25

#はじめに
初歩的だとは思いますが、pip install requests実行時に

matplotlib 1.3.1 requires nose, which is not installed.
matplotlib 1.3.1 requires tornado, which is not installed.

上記エラーが発生した際の対処方法を記録として残したいと思います。

##①sudo easy_install nose及び、sudo easy_install tornadoを実行することで解決。

sudo easy_install nose
sudo easy_install tornado

とターミナルへ入力することで解決いたしました。

念の為に情報源を下記に残します。
https://stackoverflow.com/questions/49718346/matplotlib-nose-tornado

ご参考になれば幸いです。

31
12
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
31
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?