You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/python/tutorial-working-with-python-in-visual-studio-step-01-create-project.md
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -73,11 +73,14 @@ This tutorial begins with a simple project containing a single, empty code file.
73
73
74
74
1. To view Python templates, search for *python*. Search is a great way to find a template when you can't remember its location in the languages tree.
75
75
76
-

76
+

77
77
78
-
Python support in Visual Studio includes several project templates, such as web applications in the Bottle, Flask, and Django frameworks. For this tutorial, start with an empty project.
78
+
Python web support in Visual Studio includes several project templates, such as web applications in the Bottle, Flask, and Django frameworks. When installing Python with the Visual Studio Installer, check "Python Web Support" under optional to install these templates. For this tutorial, start with an empty project.
79
79
80
-
1. Select the **PythonApp** template, and select **Next**.
80
+
81
+
1. Select the **Python Application** template, and select **Next**.
82
+
83
+
81
84
82
85
1. On the **Configure your new project** screen, specify a name and file location for the project, and then select **Create**.
83
86
@@ -99,7 +102,7 @@ This tutorial begins with a simple project containing a single, empty code file.
99
102
100
103
- Your project, with the name you gave in the **Create a new project** dialog box, displays in bold **(2)**. On disk, the project is a *.pyproj* file in your project folder.
101
104
102
-
- Under your project are source files, in this case only a single *.py* file **(3)**. Selecting a file displays its properties in the **Properties** window. Double-clicking a file opens it in whatever way is appropriate for that file.
105
+
- Under your project are source files, in this case only a single *.py* file **(3)**. Selecting a file displays its properties in the **Properties** window (if you do not see the **Properties** window, click the wrench in the **Solution Explorer** banner). Double-clicking a file opens it in whatever way is appropriate for that file.
103
106
104
107
- Also under the project is the **Python Environments** node **(4)**. Expand the node to show the available Python interpreters.
Copy file name to clipboardExpand all lines: docs/python/tutorial-working-with-python-in-visual-studio-step-05-installing-packages.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ The Python developer community has produced thousands of useful packages that yo
77
77
78
78
For example, select **Open interactive window**and an **Interactive window**for that specific environment appears in Visual Studio.
79
79
80
-
1. The **Packages** tabin the Python Environments window lists all packages that are currently installed in the environment.
80
+
1. Use the drop-down list below the list of environments to switch to the **Packages** tab.The **Packages** tab lists all packages that are currently installed in the environment.
81
81
82
82
## Install packages using the Python Environments window
0 commit comments