Skip to content

Commit 62c48f4

Browse files
committed
Merging changes synced from https://github.com/MicrosoftDocs/visualstudio-docs-pr (branch live)
2 parents 3603c49 + 879ba76 commit 62c48f4

5 files changed

+11
-8
lines changed

docs/debugger/attach-to-running-processes-with-the-visual-studio-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Attach to running processes with the debugger"
33
description: Discover how to attach the Visual Studio debugger to a running process on a local or remote computer.
44
ms.custom: "SEO-VS-2020"
5-
ms.date: "06/12/2020"
5+
ms.date: "06/28/2021"
66
ms.topic: "conceptual"
77
f1_keywords:
88
- "vs.debug.processes.attach"

docs/debugger/using-breakpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Use breakpoints in the debugger | Microsoft Docs
33
description: Learn about breakpoints, one of the most important debugging techniques. The article covers breakpoint actions, tracepoints, conditions, and much more.
44
ms.custom: SEO-VS-2020
5-
ms.date: 06/30/2020
5+
ms.date: 12/21/2020
66
ms.topic: how-to
77
f1_keywords:
88
- vs.debug.breakpointswin

docs/python/data-science-and-analytical-applications-workload.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Data Science and Analytical Applications workload
33
description: This Visual Studio workload brings together Python, F#, and their respective runtime distributions including Anaconda. (R is also included in Visual Studio 2017 only.)
4-
ms.date: 02/28/2019
4+
ms.date: 07/28/2021
55
ms.topic: overview
66
author: JoshuaPartlow
77
ms.author: joshuapa
@@ -54,7 +54,7 @@ By default, the workload installs the following options, which you can modify in
5454
- F# language support
5555
- Python:
5656
- Python language support
57-
- [Anaconda3 64-bit](https://www.continuum.io), a Python distro that includes extensive data science libraries and a Python interpreter.
57+
- [Anaconda3 64-bit](https://anaconda.com), a Python distro that includes extensive data science libraries and a Python interpreter.
5858
- Python web support
5959
- Cookiecutter template support
6060
- R:

docs/python/installing-python-interpreters.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Select and install Python interpreters
33
description: A complete list of Python interpreters that are supported in Visual Studio with brief instructions on where to find their installers.
4-
ms.date: 06/05/2019
4+
ms.date: 07/28/2021
55
ms.topic: how-to
66
author: JoshuaPartlow
77
ms.author: joshuapa
@@ -29,6 +29,9 @@ You can also manually install any of the interpreters listed in the table below
2929

3030
For **Visual Studio 2015 and earlier**, you must manually install one of the interpreters.
3131

32+
> [!Note]
33+
> Although Visual Studio offers to install the Anaconda distribution, your use of the distribution and additional packages from Anaconda Repository are bound by the [Anaconda Terms of Service](https://www.anaconda.com/terms-of-service). These terms may require some organizations to pay Anaconda for a commercial license, or else configure the tools to access an alternate repository. See the [Conda channels documentation](https://docs.conda.io/projects/conda/en/latest/user-guide/concepts/channels.html) for more information.
34+
3235
Visual Studio (all versions) automatically detects each installed Python interpreter and its environment by checking the registry according to [PEP 514 - Python registration in the Windows registry](https://www.python.org/dev/peps/pep-0514/). Python installations are typically found under **HKEY_LOCAL_MACHINE\SOFTWARE\Python** (32-bit) and **HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Python** (64-bit), then within nodes for the distribution such as **PythonCore** (CPython) and **ContinuumAnalytics** (Anaconda).
3336

3437
If Visual Studio does not detect an installed environment, see [Manually identify an existing environment](managing-python-environments-in-visual-studio.md#manually-identify-an-existing-environment).
@@ -39,7 +42,7 @@ Visual Studio shows all known environments in the [**Python Environments**](mana
3942
| --- | --- |
4043
| [CPython](https://www.python.org/) | The "native" and most commonly-used interpreter, available in 32-bit and 64-bit versions (32-bit recommended). Includes the latest language features, maximum Python package compatibility, full debugging support, and interop with [IPython](https://ipython.org/). See also: [Should I use Python 2 or Python 3?](https://wiki.python.org/moin/Python2orPython3). Note that Visual Studio 2015 and earlier do not support Python 3.6+ and can give errors like **Unsupported python version 3.6**. Use Python 3.5 or earlier instead. |
4144
| [IronPython](https://github.com/IronLanguages/ironpython2) | A .NET implementation of Python, available in 32-bit and 64-bit versions, providing C#/F#/Visual Basic interop, access to .NET APIs, standard Python debugging (but not C++ mixed-mode debugging), and mixed IronPython/C# debugging. IronPython, however, does not support virtual environments. |
42-
| [Anaconda](https://www.continuum.io) | An open data science platform powered by Python, and includes the latest version of CPython and most of the difficult-to-install packages. We recommend it if you can't otherwise decide. |
45+
| [Anaconda](https://anaconda.com) | An open data science platform powered by Python, and includes the latest version of CPython and most of the difficult-to-install packages. We recommend it if you can't otherwise decide. |
4346
| [PyPy](https://www.pypy.org/) | A high-performance tracing JIT implementation of Python that's good for long-running programs and situations where you identify performance issues but cannot find other resolutions. Works with Visual Studio but with limited support for advanced debugging features. |
4447
| [Jython](https://www.jython.org/) | An implementation of Python on the Java Virtual Machine (JVM). Similar to IronPython, code running in Jython can interact with Java classes and libraries, but may not be able to use many libraries intended for CPython. Works with Visual Studio but with limited support for advanced debugging features. |
4548

docs/python/interactive-repl-ipython.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: IPython REPL (interactive window)
33
description: Use the Visual Studio interactive window in IPython mode for a user-friendly interactive development environment with Interactive Parallel Computing features.
4-
ms.date: 01/28/2019
4+
ms.date: 07/28/2021
55
ms.topic: how-to
66
author: JoshuaPartlow
77
ms.author: joshuapa
@@ -16,7 +16,7 @@ ms.workload:
1616

1717
The Visual Studio **Interactive** window in IPython mode is an advanced yet user-friendly interactive development environment that has Interactive Parallel Computing features. This article walks through using IPython in the Visual Studio **Interactive** window, in which all of the regular [Interactive window](python-interactive-repl-in-visual-studio.md) features are also available.
1818

19-
For this walkthrough you should have the [Anaconda](https://www.continuum.io) environment installed, which includes IPython and the necessary libraries.
19+
For this walkthrough, you will need to have installed IPython, numpy and matplotlib. If you are using Anaconda, these libraries are already installed. The rest of the walkthrough assumes you are using Anaconda.
2020

2121
> [!Note]
2222
> IronPython does not support IPython, despite the fact that you can select it on the **Interactive Options** form. For more information see the [feature request](https://github.com/Microsoft/PTVS/issues/84).

0 commit comments

Comments
 (0)