13
10

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.

anacondaで作成した環境を切り替えてSpyderで作業する

Last updated at Posted at 2019-10-25

前回
Windows10 anaconda環境にpython2.7環境を追加する
で作成した仮想環境をSpyderを使ってみます。

仮想環境下でSpyderを使用するには、まず使用したい仮想環境をanaconda promptから起動した後に、Spyderを立ち上げます。
前回作成した仮想環境はpython2.7が入ったpy27という名前にしたので

(base) C:\Users\(省略)> conda activate py27

と入力すると、

(py27) C:\Users\(省略)> 

とpy27環境に移行できます。

現在このpy27にインストールされているものを確認するため

(py27) C:\Users\(省略)>conda list

と打ち込むと

(py27) C:\Users\(省略)>conda list
# packages in environment at C:\ProgramData\Anaconda3\envs\py27:
#
# Name                    Version                   Build  Channel
certifi                   2019.9.11                py27_0
pip                       19.3.1                   py27_0
python                    2.7.16               hcb6e200_0
setuptools                41.4.0                   py27_0
sqlite                    3.30.0               h0c8e037_0
vc                        9                    h7299396_1
vs2008_runtime            9.00.30729.1         hfaea7d5_1
wheel                     0.33.6                   py27_0
wincertstore              0.2              py27hf04cefb_0

(py27) C:\Users\(省略)>     
  

Spyderがインストールされていないので、condaでインストールする

(py27) C:\Users\(省略) conda install spyder

するといろいろインストールが始まるが、インストールが完了するとコマンドプロンプトが表示されるので、

(py27) C:\Users\(省略) Spyder

と打ち込むとSpyderが立ち上がる。

ウインドウの左上のタイトルがSpyder (Python2.7)と表示されており、Python2.7の環境でSpyderが開けていることがわかる。

image.png

注意点

ここでpip でインストールするとspyderは立ち上がらないので、必ずcondaでインストールすること(←間違えて失敗した人)

13
10
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
13
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?