Forked from lvnilesh/gist:e44e3dd1c97eb0467e7d71594e1e9744
Created
August 9, 2017 03:20
-
-
Save bf4/e9a7016e4c5dca2d6b8a19d6e10d23c0 to your computer and use it in GitHub Desktop.
Revisions
-
lvnilesh revised this gist
Feb 21, 2017 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,9 @@ Step 0. Install Docker Step 1. For your chosen project, decide where you want to store your notebooks and files in a `workingfolder`. Step 2. Open that folder in the terminal `cd workingfolder` Step 3. Run this command docker run -it --rm -v $PWD:/home/jovyan/work -p 8888:8888 jupyter/all-spark-notebook -
lvnilesh renamed this gist
Feb 21, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
lvnilesh created this gist
Feb 21, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ Step 0. Install Docker Step 1. For your chosen project, decide where you want to store your notebooks and files in a `workingfolder`. Step 2. Open that folder in the terminal `cd workingfolder` Step 3. Run this command docker run -it --rm -v $PWD:/home/jovyan/work -p 8888:8888 jupyter/all-spark-notebook Step 4. This above step generates a link. Open that link in your preferred browser. The browser window will then automatically show all those notebooks stored in that workingfolder and now you can click to save changes. And also you do not need to upload/download anything. Step 5. Have fun with your project you are working on for Step 1. Step 6. Exit browser and break step 3 in terminal by pressing `control-C` Repeat steps 1..6 for another project.