I have just bought a new Macbook M1, and am struggling to use Jupyter notebook in it.
These are the steps that I followed so far:
1. Installed Homebrew
2. Installed pyenv
3. brew install miniforge
4. conda create -n new_env python=3.8.11
5. conda activate new_env
6. conda install Ipython
7. conda install ipykernel
8. conda install jupyter
9. pip install tensorflow
Then, I opened Jupyter notebook from this virtual env and tried to import tensorflow
which gave me the error 'The kernel appears to have died. It will restart automatically'
Why does this happen? Is there anything that I missed? Could someone please help me with this?