Skip to content

Commit 46f3412

Browse files
cwebster-99luabud
andauthored
Apply suggestions from code review
Co-authored-by: Luciana Abud <45497113+luabud@users.noreply.github.com>
1 parent 8617516 commit 46f3412

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,36 @@
22

33
## Overview
44

5-
The Python Environments and Package Manager extension for VS Code helps users manage Python environments and packages using their preferred environment manager backed by its extensible APIs. This extension provides unique support to specify environments for specific files, whole Python projects, or multiroot/monorepos scenarios.
5+
The Python Environments and Package Manager extension for VS Code helps you manage Python environments and packages using your preferred environment manager backed by its extensible APIs. This extension provides unique support to specify environments for specific files or whole Python folders or projects, including multi-root & mono-repos scenarios.
66

7-
> Note: This extension is in preview and its APIs and features are subject to change as the project continues to evolves.
7+
> Note: This extension is in preview and its APIs and features are subject to change as the project continues to evolve.
88
99
## Features
1010

1111
### Environment Management
1212

13-
This extension provides an environments view, stored in the VS Code Activity Bar, for users to manage their Python environments. Here, users can create, delete, and switch between environments, as well as install and uninstall packages within the current environment. It also provides APIs for extension developers to contribute their own environment managers.
13+
This extension provides an Environments view, which can be accessed via the VS Code Activity Bar, where you can manage your Python environments. Here, you can create, delete, and switch between environments, as well as install and uninstall packages within the selected environment. It also provides APIs for extension developers to contribute their own environment managers.
1414

1515
By default, the extension uses the `venv` environment manager. This default manager determines how environments are created, managed, and where packages are installed. However, users can change the default by setting the `python-envs.defaultEnvManager` to a different environment manager. The following environment managers are supported out of the box:
1616

1717
|Id| name |Description|
1818
|---|----|--|
1919
|ms-python.python:venv| `venv` |The default environment manager. It is a built-in environment manager provided by the Python standard library.|
20-
|ms-python.python:system| System Installed Python | These are python installs on your system. Installed either with your OS, or from python.org, or any other OS package manager |
21-
|ms-python.python:conda| `conda` |The conda environment manager. It is a popular environment manager for Python.|
20+
|ms-python.python:system| System Installed Python | These are global Python installs on your system. These are typically installed with your OS, from [python.org](https://www.python.org/), or any other OS package manager. |
21+
|ms-python.python:conda| `conda` | The [Anaconda](https://www.anaconda.com/) environment manager. |
2222

2323
The environment manager is responsible for specifying which package manager will be used by default to install and manage Python packages within the environment. This ensures that packages are managed consistently according to the preferred tools and settings of the chosen environment manager.
2424

2525
### Package Management
2626

27-
This extension provides a package view for the user to manage, install and uninstall, their Python packages in any partiular environment. This extension provides APIs for extension developers to contribute package managers.
27+
This extension provides a package view for you to manage, install and uninstall you Python packages in any particular environment. This extension provides APIs for extension developers to contribute package managers.
2828

29-
The extension by uses `pip` as the default package manager. You can change this by setting the `python-envs.defaultPackageManager` setting to a different package manager. The following are package managers supported out of the box:
29+
The extension uses `pip` as the default package manager. You can change this by setting the `python-envs.defaultPackageManager` setting to a different package manager. The following are package managers supported out of the box:
3030

3131
|Id| name |Description|
3232
|---|----|--|
33-
|ms-python.python:pip| `pip` | Pip acts as the default package manager and is built-in to the Python language provided by the Python standard library.|
34-
|ms-python.python:conda| `conda` |The conda package manager. |
33+
|ms-python.python:pip| `pip` | Pip acts as the default package manager and it's typically built-in to Python.|
34+
|ms-python.python:conda| `conda` | The [Anaconda](https://www.anaconda.com/) environment manager. |
3535

3636
## Settings Reference
3737

0 commit comments

Comments
 (0)