DonJayamanne / vscodeJupyter

Jupyter for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=donjayamanne.jupyter
MIT License
334 stars 34 forks source link

ModuleNotFoundError: No module named 'IPython' #127

Open gennaro-tedesco opened 6 years ago

gennaro-tedesco commented 6 years ago

Environment data

VS Code version: 1.25.1 Jupyter Extension version: 1.1.4 OS and version: macOS Sierra 10.12.6

Logs

Output from Jupyter output panel

Traceback (most recent call last):
  File "$HOME/.vscode/extensions/donjayamanne.jupyter-1.1.4/python/PythonTools/ipythonServer.py", line 77, in <module>
    from IPython.kernel import KernelManager
ModuleNotFoundError: No module named 'IPython'

Output from Console window (Help->Developer Tools menu): None

Actual behavior

The extension does not find start off the notebook: apparently it does not find the correct path to IPython.

Expected behavior

The Extension starts off the Jupyter notebook properly.

Steps to reproduce:

x = np.linspace(0, 20, 100) plt.plot(x, np.sin(x)) plt.show()


- run the cell.