0
0

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 インストールメモ(Mac)

Last updated at Posted at 2021-04-01

スタート時、python 3.8をインストール済み

下記を参考にanacondaをインストールする.
https://sukkiri.jp/technologies/ides/anaconda-mac_install.html

Anaconda-Navigatorを起動できるも、Spyderを起動できない。

ターミナルで
$spyder
と入力。 No such file or directory ・・・ないと言われる。

次に
$conda install spyder==4.0

でインストールしようとすると

spyder==4.0 -> python[version='>=2.7,<2.8.0a0|>=3.7,<3.8.0a0|>=3.6,<3.7.0a0']

と、バージョンが違うと怒られる。

以下のページを参考に
https://teratail.com/questions/285725

$conda install python=3.7

で、3.7を入れ直す

と入力。無事起動。

anaconda Navigator を再起動し、SpyderアイコンのLaunchからも起動できるようになった。


まとめ。
Pythonのバージョンが高すぎたため起動しなかったと思われる。
pythonは3.8をアンインストールしなくても、3.7をインストールできた。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?