35
42

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.

pycharmから、anacondaの環境を使いたい。osx

Last updated at Posted at 2018-01-19

#やりたいこと

anacondaで環境を作っていて、pycharmからそこの環境を使いたいとおもいました。

#anacondaの環境しらべる

スクリーンショット 2018-01-19 20.55.53.png 今回例として、python35というanacondaの環境をpycharmで利用しようと思います。

まずは、anacondaの仮想環境のpathを取得します。僕の場合は下記のようなpathでした。envsの中に環境があるので、そこまでのpathをコピーします。
/Users/ユーザー名/anaconda2/envs/python35
#pycharm側設定

次にpycharm側で、preferrence -> Project:プロジェクト名 -> project interpreter にいきます。project inspecterのリストボックスの横、歯車マークのボタンを押して、add localします
スクリーンショット 2018-01-19 21.44.49.png

表示されたAdd Local Python Interpreter画面で、Existing environmentを選択し、Interpreterに下記のpathを記入してOK。
/Users/ユーザー名/anaconda2/envs/python35/bin/python

スクリーンショット 2018-01-19 21.51.28.png

これで、anaondaの環境と連携されました。

35
42
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
35
42

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?