Section 2 Menu
< Section 1
Section 3 >
5. Command Line Basics
6. Installing Python (Step by Step)
7. Running Python Code
8. Getting the Notebooks and Course Material
9. Git and Github Overview
Command Line Basics
https://www.udemy.com/complete-python-bootcamp/learn/lecture/9431354#overview
Installing Python (Step by Step)
https://www.udemy.com/complete-python-bootcamp/learn/lecture/9373054#overview
https://www.anaconda.com/distribution
Running Python Code
https://www.udemy.com/complete-python-bootcamp/learn/lecture/9373062#overview
Anaconda
To run Anaconda on your desktop:
Windows:
Start > Anaconda Navigator > Jupyter Notebook > [Launch]
Linux:
Use the command line:
anaconda-navigator
Start Jupyter Notebook
- From Anaconda > Jupyter Notebook > [Launch] > This will open a Browser window
- Navigate to your programming folder
Create a new Notebook
Click the ‘New’ dropdown and select Python3 under ‘Notebook’
This will create the new notebook. You’ll see it in the file explorer tab under ‘Untitled.ipynb’ (iPython Notebook)
Rename the Notebook by clicking the Notebook’s name (Untitled) and renaming it.
Running Code
Enter the code in the text field, then click [ >| Run ] or just press [Shift]+[Enter]
Entering Markdown Text
Click the ‘Code’ dropdown and select ‘Markdown’
Running Python from the Command Line: (Windows and Linux)
python <scriptname.py>
To enter single lines of code:
python
print('hello world')
To exit:
quit()
Getting the Notebooks and Course Material
https://www.udemy.com/complete-python-bootcamp/learn/lecture/9373066#overview
https://github.com/Pierian-Data/Complete-Python-3-Bootcamp
Git and Github Overview
https://guides.github.com/activities/hello-world/