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
Conda isn't "the Anaconda package manager" but an [independent OSS
project governed by the conda organization and governance
policy](https://github.com/conda/governance) distributed in a number of
conda distributions.
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,11 +14,11 @@ This extension provides an Environments view, which can be accessed via the VS C
14
14
15
15
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:
| 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 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. |
| 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 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 [conda](https://conda.org) environment manager, as provided by conda distributions like [Anaconda Distribution](https://docs.anaconda.com/anaconda/) or [conda-forge](https://conda-forge.org/download/).|
22
22
23
23
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.
24
24
@@ -28,10 +28,10 @@ This extension provides a package view for you to manage, install and uninstall
28
28
29
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:
| 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 [conda](https://conda.org) package manager, as provided by conda distributions like [Anaconda Distribution](https://docs.anaconda.com/anaconda/) or [conda-forge](https://conda-forge.org/download/).|
0 commit comments