7
8

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.

pyenvでinstallしたanacondaをpycharmで使うための設定

Posted at

やりたいこと

pycharmでコード書くにあたり、
pyenvでインストールしたanacondaを使いたかったんだけど、
anacondaに入ってるはずのモジュールをimportしようとしたら怒られました。 (´・ω・`)

スクリーンショット 2018-03-09 23.25.05.png

具体的なエラー文は以下の通り。

No module named requests less... (⌘F1) 
This inspection detects names that should resolve but don't. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases. Top-level and class-level items are supported better than instance items.

これを何とかします。

環境

  • macOS 10.13
  • pyenv 1.2.1
  • anaconda 3.5.0.1 (pyenvで入れた)
  • pycharm 2017.3.3

対応方法 (前半)

1. pycharmのメニューから file -> Default Settings -> Project Interpreter を開く

  1. 歯車アイコンクリック -> Add local... を選択
  2. Existing environment を選択
  3. Interpreter... アイコンクリック
  4. ~/.pyenv/versions/anacondax-x.x.x/bin/python3 を選択
  5. (そーするとこんな感じになる)
スクリーンショット 2018-03-09 23.38.31.png

対応方法 (後半)

ここまでやったら import requests の下の「エラーだよ★」波線は消えたんだけど、代わりに Pycharm のエディタ上に
No Python interpreter configured for the project (Configure Python Interpreter) って出るようになった。

スクリーンショット 2018-03-09 23.50.04.png

このままだと (´・ω・`) なので対応する。

  1. Configure Python Interpreter をクリック
  2. Project Interpreter が表示される
  3. Project Interpreter の ▼アイコンクリック
  4. さっき指定した Python x.x が出てくるので、ソレを選んで OK する
スクリーンショット 2018-03-10 0.04.31.png

無事 動くよーになりましたーうれしい! ヽ(o゚ω゚o)ノ

7
8
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
7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?