Python in Jupyter: Difference between revisions

From CommunityData
(8 intermediate revisions by 4 users not shown)
Line 2: Line 2:


=== Download a Jupyter Notebook ===  
=== Download a Jupyter Notebook ===  
First, start Jupyter as you were instructed to previously. Next, save the file at the following link to your desktop [https://communitydata.science/~groceryheist/CDSW_Jupyter_test_notebook.ipynb CDSW Jupter test notebook]. Finally, open the notebook by Navigating to your Desktop menu in Jupyter and clicking on `CDSW_Jupyter_test_notebook.ipynb`
 
Save the file CDSW_Jupyter_test_notebook.ipynb from the following link to your desktop: [https://communitydata.science/~groceryheist/CDSW_Jupyter_test_notebook.ipynb CDSW Jupter test notebook]  
(To save, (on Windows) right click the link and choose "save link as..." On a Mac, Option + click will do the same).    If you're using a new Mac, it may change the name of your file from ending in .ipynb to ending in .txt. This will not work: use command-i (get info) and then click on the type section. Remove the .txt at the end of the file name and hit tab -- when your Mac asks you if you want to do this, say yes.
Save it as a .ipynb file (rename it if you forget).
Make sure you save it on the CDSW folder you've created on your desktop. (Or drag it into that folder).
 
=== Open the Notebook in Jupyter Web Browser ===
 
Start Jupyter as you were instructed to in a previous step.
In the Jupyter tab in your browser, navigate to your desktop in the list of folders and click on <code>CDSW_Jupyter_test_notebook.ipynb</code>.
 


=== Test the notebook ===
=== Test the notebook ===


Following the instructions in the notebook, run the cell that says:
Following the instructions in the notebook, run the cell (by clicking the "run" button in the tool bar or press "ENTER + SHIFT") that says:
   print("hello world")
   print("hello world")


Line 12: Line 22:


Feel free to play around in the notebook. Try it out and explore!
Feel free to play around in the notebook. Try it out and explore!
P.S. Feel free to try out Python commands in this notebook. It's for you to play with!


=== Success! You have a working Python and Jupyter setup! ===
=== Success! You have a working Python and Jupyter setup! ===

Revision as of 03:24, 18 January 2020

We are going to practice writing and running Python programs (often called "scripts").

Download a Jupyter Notebook

Save the file CDSW_Jupyter_test_notebook.ipynb from the following link to your desktop: CDSW Jupter test notebook (To save, (on Windows) right click the link and choose "save link as..." On a Mac, Option + click will do the same). If you're using a new Mac, it may change the name of your file from ending in .ipynb to ending in .txt. This will not work: use command-i (get info) and then click on the type section. Remove the .txt at the end of the file name and hit tab -- when your Mac asks you if you want to do this, say yes. Save it as a .ipynb file (rename it if you forget). Make sure you save it on the CDSW folder you've created on your desktop. (Or drag it into that folder).

Open the Notebook in Jupyter Web Browser

Start Jupyter as you were instructed to in a previous step. In the Jupyter tab in your browser, navigate to your desktop in the list of folders and click on CDSW_Jupyter_test_notebook.ipynb.


Test the notebook

Following the instructions in the notebook, run the cell (by clicking the "run" button in the tool bar or press "ENTER + SHIFT") that says:

 print("hello world")

You should see "hello world" output right below. If that works you have a working setup for Python and Jupyter. If that doesn't work, you should ask for assistance!

Feel free to play around in the notebook. Try it out and explore!

P.S. Feel free to try out Python commands in this notebook. It's for you to play with!


Success! You have a working Python and Jupyter setup!

Champagne.pngParty.png