Skip to content

Commit 426bdaa

Browse files
committed
Updating screenshots
1 parent c353e25 commit 426bdaa

11 files changed

+41
-79
lines changed

docs/python/environments.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Python environments are managed via the Python Environments extension. The exten
1818

1919
The Python Environments view can be accessed from the Activity Bar and provides a unified interface for managing your Python projects and environments:
2020

21-
![Python Environments view in VS Code (Screenshot placeholder)]()
21+
![Python Environments view in the Activity Bar.](/docs/python/images/environments/python-environments-activity-bar.png)
2222

2323
The view consists of two main sections:
2424

@@ -70,7 +70,7 @@ The following table lists the various tools involved with Python environments:
7070

7171
### Quick Create
7272

73-
Quick create allows for a one-click environment creation flow, choosing the defaults for you. Quick create configures a virutal environment using the default environment manager and the latest Python version, and installing dependencies found in a `requirements.txt` or `pyproject.toml` file.
73+
Quick create allows for a one-click environment creation flow, choosing the defaults for you. Quick create configures a virtual environment using the default environment manager and the latest Python version, and installing dependencies found in a `requirements.txt` or `pyproject.toml` file.
7474

7575
1. Open the Python Environments view from the Activity Bar
7676
2. Under "Environment Managers", find your preferred environment manager (e.g., venv)
@@ -80,6 +80,8 @@ Quick create allows for a one-click environment creation flow, choosing the defa
8080
- The latest Python version
8181
- Workspace dependencies (if available)
8282

83+
![Screenshot of the environment creation options for venv.](/docs/python/images/environments/environment-creation-dropdown.png)
84+
8385
### Custom environment creation
8486

8587
For more control over your environment settings, choose custom environment creation.
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

docs/python/python-quick-start.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ You can quickly create a scaffolded Python project for scripts or a Python packa
2828

2929
![Screenshot showing the Python Environments Activity Bar.](/docs/python/images/environments/python-environments-activity-bar.png)
3030

31-
2. Under "Python Projects", select **Create New**.
31+
2. In the "Python Projects" section, select **Add Python Project** and **Create New**.
32+
33+
![Screenshot showing the UI entry point to add a new python project.](/docs/python/images/quick-start/create-project.png)
3234

3335
3. Choose from available project templates:
3436
- **Package**: A structured Python package with `__init__.py` and setup configurations.
@@ -48,7 +50,7 @@ You can create a new Python file by selecting **New File** on the VS Code Welcom
4850

4951
When you launch VS Code for the very first time, you will need to install the Python extension to get Python-specific features and UI. Let’s look at the UI after installing the Python extension:
5052

51-
![Image of the Python UI highlights in VS Code.](images/quick-start/ui-tour.png)
53+
![Image of the Python UI highlights in VS Code.](images/quick-start/updated-ui-tour.png)
5254

5355
## Code Actions
5456

docs/python/python-tutorial.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,21 +89,21 @@ The Python Environments extension provides a dedicated interface for managing en
8989

9090
1. Open the Python Environments view from the Activity Bar on the left side of VS Code.
9191

92-
2. Under "Environment Managers", select your preferred environment manager (such as venv).
92+
![Screenshot of the Python Environments panel from the Activity Bar.](/docs/python/images/environments/python-environments-activity-bar.png)
9393

94-
3. Select **Create Environment** or use the **Quick Create** option which automatically creates a new virtual environment using your default environment manager and the latest Python version.
94+
2. Under "Environment Managers", select the `+` next to your preferred environment manager (such as Venv).
9595

96-
[TODO: Add screenshot of Python Environments Quick Create option in VS Code]
96+
3. Select the **Quick Create** option which automatically creates a new virtual environment using your default environment manager and the latest Python version.
9797

98-
4. Follow the prompts to specify the Python version and environment name.
98+
![Screenshot of the environment creation options for venv.](/docs/python/images/environments/environment-creation-dropdown.png)
9999

100-
4. After selecting the interpreter, a notification will show the progress of the environment creation and the environment folder (`/.venv`) will appear in your workspace.
100+
4. A notification will show the progress of the environment creation and the environment folder (`/.venv`) will appear in your workspace.
101101

102102
![Create environment status notification](images/environments/create_environment_prompt_status.png)
103103

104104
5. Once created, your new environment will be available in the list and automatically selected for your workspace.
105105

106-
![Select an Interpreter](images/tutorial/interpreter-venv.png)
106+
![Select an Interpreter](/docs/python/images/environments/selected-interpreter-envs.png)
107107

108108
> **Note**: For additional information about virtual environments, or if you run into an error in the environment creation process, see [Environments](/docs/python/environments.md#creating-environments).
109109
@@ -243,16 +243,20 @@ Installing Python packages can be done fully within the UI.
243243

244244
1. Open the **Python Environments** view from the Activity Bar.
245245

246-
2. Locate your active environment under either "Python Projects" or "Environment Managers".
246+
2. Locate your active environment under "Environment Managers".
247247

248248
3. Expand your environment and the **Packages** node to view packages currently available in your environment. Select the package icon on the environment.
249249

250+
![Screenshot of UI entry point for package management.](/docs/python/images/tutorial/manage-packages.png)
251+
250252
4. Select **Search common PyPI packages** and search for and select `numpy`.
251253

252-
[TODO: Add screenshot of Python Environments package management interface]
254+
![Screenshot of package installation UI.](/docs/python/images/tutorial/install-numpy.png)
253255

254256
5. Once installed, the package will appear in your environment's package list.
255257

258+
![Screenshot showing numpy installed in the virtual environment.](/docs/python/images/tutorial/numpy-installed.png)
259+
256260
### Using the terminal to install packages
257261

258262
Alternatively, you can install packages using the terminal:

0 commit comments

Comments
 (0)