Python Notebook with Pandas in One Line

If you have Docker installed, opening up a Jupyter Python notebook with Pandas for data analysis can be done with one step on the command line. Running python notebooks in a Docker container prevents tons of headaches with installation, permissions, version conflicts, etc. Docker Command docker run –name notebookContainer –rm -p 127.0.0.1:8888:8888 -v pwd:/home/jovyan/work jeremyworks/jupyter-scipy:1.0.0 …

Python Notebook with Pandas in One Line Read More »