words-sdsc/coursera

env: jupyter: No such file or directory

Opened this issue · 6 comments

Working on cloudera VM for windows, course 3, week1, trying to set up spark with jupyter notebooks.

After installing scripts and supposedly anaconda with jupyter support (./setup.sh) and after sourcing bashrc, while trying to run pyspark I am getting error:
env: jupyter: No such file or directory

I tried to install some components manually but it didn't help. Does anyone know how to go through this step?

I had the same issue. I managed to finish the installation until pyspark actually runs BUT not anaconda. There's nothing in the localhost...

Encontraron alguna solucion?

Seems the setup.sh script has certificate errors, and anaconda does not install properly.
I manually installed anaconda by this command

wget http://repo.continuum.io/archive/Anaconda3-4.0.0-Linux-x86_64.sh --no-check-certificate

After that, open a new terminal and then run pyspark
Voila~~

No solution even after passing --no-check-certificate and going through the installation steps. Seems there are errors with software versions in the VM.

Instead, you can install spark locally on your system, download the .csv.gz files used in the hands-on from github, unzip them, and read them as dataframes from csv. Then carry on with the work.

Hope this helps.

If it doesn´t work after passing --no-check-certificate, then you should delete your Cloudera VM, download it again and start over. Make sure to manually install anaconda with the command above before running ./setup.sh
It should run this time.

Seems the setup.sh script has certificate errors, and anaconda does not install properly. I manually installed anaconda by this command

wget http://repo.continuum.io/archive/Anaconda3-4.0.0-Linux-x86_64.sh --no-check-certificate

After that, open a new terminal and then run pyspark Voila~~

--Hey thanks this approach worked for me.
i was getting open SSL error by calling the wget command so,
I downloaded the Anaconda .sh file from the URL repo u mentioned, placed it in the big-data-3 folder, changed the permission to executable file and run it.
https://www.cyberciti.biz/faq/run-execute-sh-shell-script/

Now everything works fine. Thanks a ton!!