Jupyter notebook virtual environment (windows 10)
Hi,π in this article I suppose that you already created your virtual environment and you already use anaconda. 1- Open anaconda prompt (base) C:\Users\Me> 2- Type the command: conda env list this command will give you all virtual environments that you have already created π: (base) C:\Users\Me>conda env list 3- Choose the virtual env that you want,(in my case I choose the environment " tf_2-4_jupyter ") then activate it with this command : conda activate your chosen virtual environment , (base) C:\Users\My>conda activate tf_2-4_jupyter (tf_2-4_jupyter) C:\Users\My> 4- Install "ipykernel" with the command pip install --user ipykernel (tf_2-4_jupyter) C:\Users\My>pip install --user ipykernel if you successfully installed it π you will got this message: " Successfully installed i pykernel -5.5.5 jupyter-client-6.1.12 jupyter-core-4.7.1 pywin32-301 pyzmq-22.1.0 tornado-6.1" 5- Type python -m ipykernel install --user --name= your cho...