Last answered:

01 Jan 2023

Posted on:

07 Jan 2021

1

Resolved: No Kernel Created Despite the new Environment

Hi, I did exactly the same thing, successfully created the environment, restarted anaconda and created Jupyter Notebook but there was no other kernel apart from the base one. I really do not understand reason why the kernel I created following the instructions did not appear. Does it have something to do with CUDA & CUDNN (NVIDIA GPU SUPPORT) or is problem something else? I am really disappointed because I was so adamant that I would be able to take this (Deep learning TensorFlow 2) course and obtain the main skills but I am stuck in the *Setting Up the Environment* section. I have watched lots of videos about the installation, some say we need GPU to use TensorFlow others don't, as of now I am really confused because in your video you did not mention anything in relation to GPUAs you see, there is no other kernel apart from the base one. Please help me. Please, help me set this environment (create the kernel) and I would highly appreciate if you do, otherwise I will not be able to take this course.
Thanks,
Kanan

9 answers ( 2 marked as helpful)
Posted on:

08 Jan 2021

0

in the worst case, you can use google colab to work with TensorFlow. I did have a problem with downloading TensorFlow as well.

Posted on:

08 Jan 2021

2

1. conda create --name tf python=3.7
2. conda activate tf
3. pip3 install --user tensorflow
4. pip install ipykernel

I did have the same problem. Apply these procedures in anaconda prompt. It worked for me.




Posted on:

05 Mar 2021

0

Nurlan, you're the man. Thank you very much

Posted on:

05 Mar 2021

0

Nurlan, you're the man. Thank you very much

Posted on:

05 Nov 2021

1

In case the mentioned procedures above don't work well for you like me, my solution is, after this procedure,
4. pip install ipykernel
I add one more command to add venv to the jupyter.

python -m ipykernel install --user --name=myenv
Posted on:

20 Nov 2021

0

Followed all the instructions. Still I can't see the tensorflow kernel. tried the following as well
1. conda create --name tf python=3.7
2. conda activate tf
3. pip3 install --user tensorflow
4. pip install ipykernel

python -m ipykernel install --user --name=myenv

Pls guide..

Posted on:

21 Nov 2021

2

Resolved -
1. Go to the Anaconda navigator
2. Top left corner -> choose the tf environment
3. Install and launch Jupyter notebook

Posted on:

05 Nov 2022

0

Installed the tensorflow library

Posted on:

01 Jan 2023

2

SImply, you are using the jupyter notebook outside your current environment. To fix this, activate your environment first.Then install jupyter in your environment using "pip install jupyter". Then ,wait until the installation complete. Finally, simply type "jupyter notebook" to run the notebook within your environment. PS: Make sure you have installed tensorflow inside the environment

Submit an answer