34
40

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 3 years have passed since last update.

Anacondaでpythonのバージョンを使い分ける

Last updated at Posted at 2018-11-08

普段python3.x系を使ってるのに、急に2.7を使わなくちゃいけなくなった場合

anacondaを使ってバーションを切り替える。

そもそもpython2つもpcに入れられんのかっていう初心者な疑問もある。。。
競合しちゃいそうじゃん!!

仮想で入れれば問題ないらしい
これからその設定をしていく!(macで)

#####仮想環境インストール
コマンドで

$ conda create -n py27 python=2.7 anaconda

これで終わり。
Anacondaのパス/env/py27ができる

確認は

$ conda info -e

#####切り替え
切り替えの仕方は、起動とほぼ変わらん。
入る

$ conda activate py27
$ jupyter lab

出る

$ conda deactivate

#####番外編
全パッケージの確認

$ conda list

Anaconda自体のアップデート

$ conda update -n base conda

Anaconda全パッケージのアップデート

$ conda update --all

Anaconda特定パッケージのアップデート

$ conda update pandas

pandasを任意のパッケージ名に変える。

34
40
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
34
40

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?