Skip to content

Commit a6d42c7

Browse files
Jupyter NoteBook
1 parent 8efb616 commit a6d42c7

File tree

2 files changed

+61
-10
lines changed

2 files changed

+61
-10
lines changed

.idea/workspace.xml

Lines changed: 9 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Review: Use JupyterLab and Jupyter Notebooks.
2+
# JupyterLab
3+
4+
JupyterLab is a web-based interface that allows you to use Jupyter Notebooks to write, run, and debug Python code.
5+
JupyterLab is an online environment that allows you to run your code in the cloud.
6+
7+
8+
# Jupyter Notebook
9+
Jupyter Notebook can be used and run in the web-based interface through
10+
JupyterLab
11+
or on your local machine. Jupyter Notebook allows you to create documents that contain live code. You can write Python programs and scripts using Jupyter Notebooks and see how they execute all in one place.
12+
It is a great tool for creating and understanding the code you are writing because you can see your input and output all in one spot.
13+
14+
15+
# Installing Jupyter
16+
- If you would like to install JupyterLab and Jupyter Notebooks on your local machine you can do this by using the pip command from the Python terminal command-line.
17+
18+
19+
# JupyterLab
20+
- Install JupyterLab
21+
```bash
22+
pip install jupyterlab
23+
```
24+
25+
- Once installed, launch JupyterLab
26+
- jupyter-lab
27+
28+
29+
- Jupyter Notebook
30+
- Install the classic Jupyter Notebook
31+
```bash
32+
pip install notebook
33+
```
34+
- Run the notebook
35+
- jupyter notebook
36+
37+
38+
- Sharing Jupyter Notebooks
39+
- JupyterLab and Jupyter Notebooks is a great resource for writing Python code. Notebooks can be shared and saved easily using email, GitHub, and
40+
- Jupyter Notebook Viewer
41+
42+
43+
44+
- Jupyter Resources
45+
- There are tons of Jupyter resources available. Here is a list of some great ones to help you get started!
46+
47+
- Try Jupyter Notebooks in your browser.
48+
49+
- Install and use
50+
- JupyterLab and Jupyter Notebooks.
51+
52+

0 commit comments

Comments
 (0)