Skip to content

Commit b96e7a3

Browse files
Jeffrey MewDonJayamanne
authored andcommitted
Updated dscription to add Jupyter Notebook support (#8545)
1 parent 2ef7648 commit b96e7a3

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,31 @@ A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marke
88
* **Step 2.** Install the Python extension for Visual Studio Code.
99
* **Step 3.** Open or create a Python file and start coding!
1010

11-
## Set up your environment
11+
## Set up your environment
1212
<!-- use less words -->
1313
* Select your Python interpreter by clicking on the status bar
1414

1515
<img src=https://raw.githubusercontent.com/microsoft/vscode-python/master/images/InterpreterSelectionZoom.gif width=280 height=100>
16-
17-
* Configure the debugger through the Debug Activity Bar
16+
17+
* Configure the debugger through the Debug Activity Bar
1818

1919
<img src=https://raw.githubusercontent.com/microsoft/vscode-python/master/images/ConfigureDebugger.gif width=734 height=413>
2020

21-
* Configure tests by running the ``Configure Tests`` command
21+
* Configure tests by running the ``Configure Tests`` command
2222

2323
<img src=https://raw.githubusercontent.com/microsoft/vscode-python/master/images/ConfigureTests.gif width=734 height=413>
2424

25+
## Jupyter Notebook quick start
26+
27+
* Open or create a Jupyter Notebook file (.ipynb) and start coding in our Notebook Editor!
2528

29+
<img src=https://raw.githubusercontent.com/microsoft/vscode-python/master/images/OpenOrCreateNotebook.gif width=1029 height=602>
2630

2731

2832
For more information you can:
2933
* [Follow our Python tutorial](https://code.visualstudio.com/docs/python/python-tutorial#_prerequisites) with step-by-step instructions for building a simple app.
3034
* Check out the [Python documentation on the VS Code site](https://code.visualstudio.com/docs/languages/python) for general information about using the extension.
35+
* Check out the [Jupyter Notebook documentation on the VS Code site](https://code.visualstudio.com/docs/python/jupyter-support) for information about using Jupyter Notebooks in VS Code.
3136

3237
## Useful commands
3338
Open the Command Palette (Command+Shift+P on macOS and Ctrl+Shift+P on Windows/Linux) and type in one of the following commands:
@@ -52,11 +57,11 @@ Learn more about the rich features of the Python extension:
5257
* [Linting](https://code.visualstudio.com/docs/python/linting): Get additional code analysis with Pylint, Flake8 and more
5358
* [Code formatting](https://code.visualstudio.com/docs/python/editing#_formatting): Format your code with black, autopep or yapf
5459

55-
* [Debugging](https://code.visualstudio.com/docs/python/debugging): Debug your Python scripts, web apps, remote or multi-threaded processes
60+
* [Debugging](https://code.visualstudio.com/docs/python/debugging): Debug your Python scripts, web apps, remote or multi-threaded processes
5661

5762
* [Testing](https://code.visualstudio.com/docs/python/unit-testing): Run and debug tests through the Test Explorer with unittest, pytest or nose
5863

59-
* [Jupyter Notebooks](https://code.visualstudio.com/docs/python/jupyter-support): Define and run code cells, render plots, visualize variables through the variable explorer and more
64+
* [Jupyter Notebooks](https://code.visualstudio.com/docs/python/jupyter-support): Create and edit Jupyter Notebooks, add and run code cells, render plots, visualize variables through the variable explorer, visualize dataframes with the data viewer, and more
6065

6166
* [Environments](https://code.visualstudio.com/docs/python/environments): Automatically activate and switch between virtualenv, venv, pipenv, conda and pyenv environments
6267

images/OpenOrCreateNotebook.gif

300 KB
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "python",
33
"displayName": "Python",
4-
"description": "Linting, Debugging (multi-threaded, remote), Intellisense, code formatting, refactoring, unit tests, snippets, and more.",
4+
"description": "Linting, Debugging (multi-threaded, remote), Intellisense, Jupyter Notebooks, code formatting, refactoring, unit tests, snippets, and more.",
55
"version": "2019.12.0-dev",
66
"languageServerVersion": "0.4.114",
77
"publisher": "ms-python",

0 commit comments

Comments
 (0)