1
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?

TensorFlowのインストール方法(Mac OS)

Posted at

ターミナルの起動

まず、自分の場合はanacondaがPATHに入っていなかったので~/.zhrcファイルにanacondaのPATHを登録します。

> echo "export PATH=$PATH:/Users/takahisadeguchi/opt/anaconda3/bin" >> ~/.zshrc ; source ~/.zshrc

永続PATHに関しては過去に記事あげていますので、確認してください。
MacOSにおけるPATH管理

conda環境の構築

下のコマンドでconda環境を確認できます。

> conda info --envs

Screenshot 2024-02-04 at 17.44.07.png
ここではすでに作られていますが、新たに環境を作る場合は以下のコマンドを入力します。

> conda create --name [環境名] python=3

また、環境を変更する場合は下のコマンドを入力します。

> conda activate [環境名]

環境を変更する時に以下のエラーが発生するときがあります。
Screenshot 2024-02-04 at 18.02.01.png
そのときはこれで解決

> conda init zsh

ターミナルの環境はウインドウ上部で確認する

ここまで上手くいったらAnacondaNavigatorでも確認できます。
Screenshot 2024-02-04 at 18.08.59.png

TensorFlowのインストール

自分の場合は(py-TF2.0)環境で下のコマンドを入力しました。

> conda install tensorflow

tensorflowを最新にする

> pip install --upgrade tensorflow
1
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
1
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?