4

I'm working on win7 using git-bash. I'm using anaconda with python 2.7.13. I want to run a jupyter server:

(myenv)
$ jupyter notebook
Fatal error in launcher: Unable to create process using '"'
(myenv)
$ ipython notebook
Fatal error in launcher: Unable to create process using '"'

How can I make this work?

user1592380
  • 34,265
  • 92
  • 284
  • 515

1 Answers1

2

I too faced same issue when invoking jupyter, but only difference is invoked jupyter from windows cmd prompt.

I uninstalled jupyter, updated pip and installed jupyter. Once installed and invoked, It worked perfectly.

Check If something like this can be done from your end as I see you are invoking from virtual env.

* I have Python 3.5 64bit running in my system*

  • And there are good docs to [uninstall Anaconda](https://docs.anaconda.com/anaconda/install/uninstall/) and to [install Anaconda](https://docs.anaconda.com/anaconda/install/windows/) – Felipe Augusto Feb 05 '19 at 02:47