Unable to install tensorflow

I've been trying to install tensorflow without success.

I tried following the instructions on https://developer.apple.com/metal/tensorflow-plugin/

Can't even get past the first step for arm64

  • After downloading the conda environment (https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh), I run the first command bash ~/miniconda.sh -b -p $HOME/miniconda after I changed the downloaded file name since that didn't match up
  • The second command does not work source ~/miniconda/bin/activateconda install -c apple tensorflow-deps with a response saying no "such file or directory /miniconda/bin/activateconda" because there isn't a file called activateconda

Tried a few other methods including the following solutions but neither worked for me either

I'm not really sure why the instructions do not line up with the provided shell file

Accepted Answer

Hello @yoseph_awad,

There is a typo above, please use these commands

source ~/miniconda/bin/activate
conda install -c apple tensorflow-deps
Unable to install tensorflow
 
 
Q