arhzz
- 281
- 56
I am trying to run an .ipynb file and have installed Miniconda as well as created an environment as such
-conda create -n <env_name> python=3.7 ipykernel jupyter
I am assuming this is successful as I can activate this environment via the anaconda prompt and following command
-conda activate <env_name>
Then I downloaded and installed VS code and I am trying to edit an .ipynb file. I want to select a kernel, via VS Code but when I press the button on the upper right corner I am greeted with the message that I need to install Python and Jupyter extensions. As soon as I do that the following error shows up
"Extension activation failed run the 'Developer: Toggle Developer Tools' command for more information
Source: Jupyter (Extension)"
and I am not able to select any kernel.Additionaly,when I try running any Jupyter related commands such as
"Jupyter: Create Interactive Window"
I get error messages of the following type:
Command 'Jupyter: Create Interactive Window' resulted in an error (command 'jupyter.createnewinteractive' not found)
This error is common as far as I know and has been discussed here at StackOverflow. See following link Extension activation failed, run the 'Developer: Toggle Developer Tools' command for more information
Now I have tried the solution that was suggested on this question and it did not work. I tried installing prior versions of jupyter as well as tried completely deleting the extensions from the extensions folder. My last resort was reinstalling VS code altogether but that either did not resolve the issue.
So my question is could this be the cause of me not being able to select the kernel? If so how do I resolve this issue.
Many thanks!
-conda create -n <env_name> python=3.7 ipykernel jupyter
I am assuming this is successful as I can activate this environment via the anaconda prompt and following command
-conda activate <env_name>
Then I downloaded and installed VS code and I am trying to edit an .ipynb file. I want to select a kernel, via VS Code but when I press the button on the upper right corner I am greeted with the message that I need to install Python and Jupyter extensions. As soon as I do that the following error shows up
"Extension activation failed run the 'Developer: Toggle Developer Tools' command for more information
Source: Jupyter (Extension)"
and I am not able to select any kernel.Additionaly,when I try running any Jupyter related commands such as
"Jupyter: Create Interactive Window"
I get error messages of the following type:
Command 'Jupyter: Create Interactive Window' resulted in an error (command 'jupyter.createnewinteractive' not found)
This error is common as far as I know and has been discussed here at StackOverflow. See following link Extension activation failed, run the 'Developer: Toggle Developer Tools' command for more information
Now I have tried the solution that was suggested on this question and it did not work. I tried installing prior versions of jupyter as well as tried completely deleting the extensions from the extensions folder. My last resort was reinstalling VS code altogether but that either did not resolve the issue.
So my question is could this be the cause of me not being able to select the kernel? If so how do I resolve this issue.
Many thanks!