Downloads:
58,529
Downloads of v 2022.19.13071014:
3,322
Last Update:
04 Nov 2022
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
python vscode-python vscode microsoft- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Python VSCode Extension
- 1
- 2
- 3
2022.19.13071014 | Updated: 04 Nov 2022
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
58,529
Downloads of v 2022.19.13071014:
3,322
Maintainer(s):
Software Author(s):
- Microsoft
Python VSCode Extension 2022.19.13071014
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Python VSCode Extension, run the following command from the command line or from PowerShell:
To upgrade Python VSCode Extension, run the following command from the command line or from PowerShell:
To uninstall Python VSCode Extension, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download vscode-python --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade vscode-python -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade vscode-python -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install vscode-python
win_chocolatey:
name: vscode-python
version: '2022.19.13071014'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'vscode-python' do
action :install
source 'INTERNAL REPO URL'
version '2022.19.13071014'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller vscode-python
{
Name = "vscode-python"
Version = "2022.19.13071014"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'vscode-python':
ensure => '2022.19.13071014',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 04 Nov 2022.
A Visual Studio Code extension withrich support for the Python language (for all actively supported versions of the language: 2.7, >=3.5), including features such as IntelliSense, linting, debugging, code navigation, code formatting, Jupyter notebook support, refactoring, variable explorer, test explorer, snippets, and more!
Features
- IntelliSense: Edit your code with auto-completion, code navigation, syntax checking and more
- Linting: Get additional code analysis with Pylint, Flake8 and more
- Code formatting: Format your code with black, autopep or yapf
- Debugging: Debug your Python scripts, web apps, remote or multi-threaded processes
- Testing: Run and debug tests through the Test Explorer with unittest, pytest or nose
- Jupyter Notebooks: Define and run code cells, render plots, visualize variables through the variable explorer and more
- Environments: Automatically activate and switch between virtualenv, venv, pipenv, conda and pyenv environments
- Refactoring: Restructure your Python code with variable extraction, method extraction and import sorting
Notes
- This package requires Visual Studio Code 1.73.0-insider or newer.
You can install either the vscode or vscode-insiders package. - The extension will be installed in all editions of Visual Studio Code which can be found.
- While this package installs a specific version of the extension, Visual Studio Code by default will update the extension to the latest version on startup if there's a newer version available on the marketplace.
See Extension auto-update for instructions on how to disable auto-update. - This package is automatically updated using the Chocolatey Automatic Package Update Model (AU).
If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.
LICENSE
Copyright (c) Microsoft Corporation. All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The Visual Code extension has been downloaded from the official Visual Studio Marketplace public gallery
and can be verified by:
1. Go to the Visual Studio Marketplace page for the package
https://marketplace.visualstudio.com/items?itemName=ms-python.python
and download the package ms-python.python-2022.19.13071014.vsix using the Download Extension link
in the Resources section of the sidebar.
Alternatively the package can be downloaded directly from
https://marketplace.visualstudio.com/_apis/public/gallery/publishers/ms-python/vsextensions/python/2022.19.13071014/vspackage
2. The package can be validated by comparing checksums
- Use powershell function 'Get-Filehash' - Get-Filehash ms-python.python-2022.19.13071014.vsix
- Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f ms-python.python-2022.19.13071014.vsix
Type: sha256
Checksum: 8B67BC0B504E46FA81A7ABCB9BE1BB46699A2F3DA6EF1AD55CA29D20AF241032
File LICENSE.txt is obtained from https://marketplace.visualstudio.com/items/ms-python.python/license
$ErrorActionPreference = 'Stop'
Uninstall-VsCodeExtension -extensionId 'ms-python.python'
md5: 87D142AD475B12D79A7FEA0309119161 | sha1: 81079EB28F8384973D5251AF0E7AAC7C36E77530 | sha256: 8B67BC0B504E46FA81A7ABCB9BE1BB46699A2F3DA6EF1AD55CA29D20AF241032 | sha512: FDDBE88DC5A12261139C27980A4423BB4B287AC234E28F455028DDEBF4FEAA48361D3F0146E9AD90C2825F773EF151D5DCDAC1B1CA5F13DCBCF116B1B9E0496B
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Python VSCode Extension 2022.19.13071014 | 3322 | Friday, November 4, 2022 | Approved | |
Python VSCode Extension 2022.17.13020517 | 516 | Sunday, October 30, 2022 | Approved | |
Python VSCode Extension 2022.17.13011006 | 160 | Saturday, October 29, 2022 | Approved | |
Python VSCode Extension 2022.17.12991026 | 271 | Thursday, October 27, 2022 | Approved | |
Python VSCode Extension 2022.17.12981938 | 166 | Wednesday, October 26, 2022 | Approved | |
Python VSCode Extension 2022.17.12941045 | 437 | Saturday, October 22, 2022 | Approved | |
Python VSCode Extension 2022.17.12921047 | 184 | Friday, October 21, 2022 | Approved | |
Python VSCode Extension 2022.17.12871028 | 550 | Saturday, October 15, 2022 | Approved | |
Python VSCode Extension 2022.17.12861055 | 179 | Friday, October 14, 2022 | Approved | |
Python VSCode Extension 2022.17.12831005 | 501 | Monday, October 10, 2022 | Approved | |
Python VSCode Extension 2022.17.12801004 | 262 | Saturday, October 8, 2022 | Approved | |
Python VSCode Extension 2022.15.12731017 | 524 | Saturday, October 1, 2022 | Approved | |
Python VSCode Extension 2022.15.12711056 | 260 | Wednesday, September 28, 2022 | Approved | |
Python VSCode Extension 2022.15.12691752 | 346 | Tuesday, September 27, 2022 | Approved | |
Python VSCode Extension 2022.15.12631011 | 368 | Thursday, September 22, 2022 | Approved | |
Python VSCode Extension 2022.15.12621040 | 318 | Tuesday, September 20, 2022 | Approved | |
Python VSCode Extension 2022.15.12591021 | 257 | Saturday, September 17, 2022 | Approved | |
Python VSCode Extension 2022.15.12571012 | 287 | Thursday, September 15, 2022 | Approved | |
Python VSCode Extension 2022.15.12532020 | 466 | Sunday, September 11, 2022 | Approved | |
Python VSCode Extension 2022.15.12501015 | 303 | Thursday, September 8, 2022 | Approved | |
Python VSCode Extension 2022.15.12451011 | 483 | Saturday, September 3, 2022 | Approved | |
Python VSCode Extension 2022.13.12411009 | 445 | Tuesday, August 30, 2022 | Approved | |
Python VSCode Extension 2022.13.12381007 | 261 | Saturday, August 27, 2022 | Approved | |
Python VSCode Extension 2022.13.12371004 | 186 | Friday, August 26, 2022 | Approved | |
Python VSCode Extension 2022.13.12341009 | 383 | Tuesday, August 23, 2022 | Approved | |
Python VSCode Extension 2022.13.12301015 | 273 | Sunday, August 21, 2022 | Approved | |
Python VSCode Extension 2022.13.12241007 | 482 | Monday, August 15, 2022 | Approved | |
Python VSCode Extension 2022.13.12171009 | 559 | Saturday, August 6, 2022 | Approved | |
Python VSCode Extension 2022.13.12141005 | 292 | Wednesday, August 3, 2022 | Approved | |
Python VSCode Extension 2022.11.12131835 | 248 | Tuesday, August 2, 2022 | Approved | |
Python VSCode Extension 2022.11.12031009 | 553 | Saturday, July 23, 2022 | Approved | |
Python VSCode Extension 2022.11.11991004 | 379 | Tuesday, July 19, 2022 | Approved | |
Python VSCode Extension 2022.11.11961004 | 257 | Saturday, July 16, 2022 | Approved | |
Python VSCode Extension 2022.11.11931021 | 235 | Thursday, July 14, 2022 | Approved | |
Python VSCode Extension 2022.11.11921007 | 352 | Monday, July 11, 2022 | Approved | |
Python VSCode Extension 2022.11.11891004 | 290 | Friday, July 8, 2022 | Approved | |
Python VSCode Extension 2022.11.11881005 | 147 | Friday, July 8, 2022 | Approved | |
Python VSCode Extension 2022.9.11821004 | 606 | Sunday, July 3, 2022 | Approved | |
Python VSCode Extension 2022.9.11791004 | 267 | Thursday, June 30, 2022 | Approved | |
Python VSCode Extension 2022.9.11741005 | 610 | Friday, June 24, 2022 | Approved | |
Python VSCode Extension 2022.9.11681004 | 473 | Saturday, June 18, 2022 | Approved | |
Python VSCode Extension 2022.9.11651038 | 272 | Wednesday, June 15, 2022 | Approved | |
Python VSCode Extension 2022.9.11611009 | 392 | Saturday, June 11, 2022 | Approved | |
Python VSCode Extension 2022.9.11601008 | 165 | Friday, June 10, 2022 | Approved | |
Python VSCode Extension 2022.7.11541009 | 455 | Saturday, June 4, 2022 | Approved | |
Python VSCode Extension 2022.7.11521008 | 159 | Friday, June 3, 2022 | Approved | |
Python VSCode Extension 2022.7.11461005 | 464 | Friday, May 27, 2022 | Approved | |
Python VSCode Extension 2022.7.11401005 | 456 | Saturday, May 21, 2022 | Approved | |
Python VSCode Extension 2022.7.11400308 | 188 | Friday, May 20, 2022 | Approved | |
Python VSCode Extension 2022.7.11381925 | 193 | Thursday, May 19, 2022 | Approved | |
Python VSCode Extension 2022.7.11332232 | 486 | Saturday, May 14, 2022 | Approved | |
Python VSCode Extension 2022.7.11291008 | 434 | Tuesday, May 10, 2022 | Approved | |
Python VSCode Extension 2022.7.11262018 | 265 | Sunday, May 8, 2022 | Approved | |
Python VSCode Extension 2022.6.0 | 223 | Friday, May 6, 2022 | Approved | |
Python VSCode Extension 2022.5.11181002 | 492 | Friday, April 29, 2022 | Approved | |
Python VSCode Extension 2022.5.11111003 | 505 | Friday, April 22, 2022 | Approved | |
Python VSCode Extension 2022.5.11101004 | 149 | Thursday, April 21, 2022 | Approved | |
Python VSCode Extension 2022.5.11091652 | 231 | Wednesday, April 20, 2022 | Approved | |
Python VSCode Extension 2022.5.11051003 | 375 | Sunday, April 17, 2022 | Approved | |
Python VSCode Extension 2022.5.11021002 | 244 | Thursday, April 14, 2022 | Approved | |
Python VSCode Extension 2022.5.10911002 | 653 | Saturday, April 2, 2022 | Approved | |
Python VSCode Extension 2022.5.10901002 | 237 | Friday, April 1, 2022 | Approved | |
Python VSCode Extension 2022.3.10841003 | 491 | Sunday, March 27, 2022 | Approved | |
Python VSCode Extension 2022.3.10811002 | 372 | Wednesday, March 23, 2022 | Approved | |
Python VSCode Extension 2022.3.10771003 | 338 | Saturday, March 19, 2022 | Approved | |
Python VSCode Extension 2022.3.10701002 | 496 | Saturday, March 12, 2022 | Approved | |
Python VSCode Extension 2022.3.10661003 | 405 | Tuesday, March 8, 2022 | Approved | |
Python VSCode Extension 2022.3.10631003 | 227 | Sunday, March 6, 2022 | Approved | |
Python VSCode Extension 2022.0.1814523869 | 821 | Saturday, February 12, 2022 | Approved | |
Python VSCode Extension 2022.0.1786462952 | 552 | Saturday, February 5, 2022 | Approved | |
Python VSCode Extension 2021.12.1559732655 | 1446 | Friday, December 10, 2021 | Approved | |
Python VSCode Extension 2021.11.1422169775 | 1121 | Saturday, November 6, 2021 | Approved | |
Python VSCode Extension 2021.10.1365161279 | 670 | Saturday, October 23, 2021 | Approved | |
Python VSCode Extension 2021.10.1336267007 | 564 | Thursday, October 14, 2021 | Approved | |
Python VSCode Extension 2021.10.1317843341 | 495 | Friday, October 8, 2021 | Approved | |
Python VSCode Extension 2021.9.1246542782 | 707 | Tuesday, September 21, 2021 | Approved | |
Python VSCode Extension 2021.9.1230869389 | 503 | Tuesday, September 14, 2021 | Approved | |
Python VSCode Extension 2021.9.1218897484 | 373 | Friday, September 10, 2021 | Approved | |
Python VSCode Extension 2021.9.1191016588 | 414 | Saturday, September 4, 2021 | Approved | |
Python VSCode Extension 2021.8.1159798656 | 533 | Tuesday, August 24, 2021 | Approved | |
Python VSCode Extension 2021.8.1147840270 | 337 | Friday, August 20, 2021 | Approved | |
Python VSCode Extension 2021.8.1105858891 | 687 | Saturday, August 7, 2021 | Approved | |
Python VSCode Extension 2021.8.1102490946 | 195 | Friday, August 6, 2021 | Approved | |
Python VSCode Extension 2021.7.1060902895 | 564 | Saturday, July 24, 2021 | Approved | |
Python VSCode Extension 2021.7.1053846006 | 284 | Thursday, July 22, 2021 | Approved | |
Python VSCode Extension 2021.6.944021595 | 955 | Thursday, June 17, 2021 | Approved | |
Python VSCode Extension 2021.5.926500501 | 399 | Saturday, June 12, 2021 | Approved | |
Python VSCode Extension 2021.5.842923320 | 886 | Saturday, May 15, 2021 | Approved | |
Python VSCode Extension 2021.5.840043038 | 190 | Friday, May 14, 2021 | Approved | |
Python VSCode Extension 2021.5.829140558 | 370 | Tuesday, May 11, 2021 | Approved | |
Python VSCode Extension 2021.4.765268190 | 720 | Tuesday, April 20, 2021 | Approved | |
Python VSCode Extension 2021.3.680753044 | 858 | Friday, March 26, 2021 | Approved | |
Python VSCode Extension 2021.3.658691958 | 536 | Wednesday, March 17, 2021 | Approved | |
Python VSCode Extension 2021.2.636928669 | 453 | Wednesday, March 10, 2021 | Approved | |
Python VSCode Extension 2021.2.633441544 | 217 | Tuesday, March 9, 2021 | Approved | |
Python VSCode Extension 2021.2.625869727 | 307 | Saturday, March 6, 2021 | Approved | |
Python VSCode Extension 2021.2.582707922 | 576 | Saturday, February 20, 2021 | Approved | |
Python VSCode Extension 2021.2.576481509 | 264 | Thursday, February 18, 2021 | Approved | |
Python VSCode Extension 2021.1.502429796 | 797 | Friday, January 22, 2021 | Approved | |
Python VSCode Extension 2020.12.424452561 | 800 | Wednesday, December 16, 2020 | Approved | |
Python VSCode Extension 2020.11.371526539 | 726 | Friday, November 20, 2020 | Approved | |
Python VSCode Extension 2020.11.367453362 | 233 | Wednesday, November 18, 2020 | Approved | |
Python VSCode Extension 2020.11.358366026 | 404 | Thursday, November 12, 2020 | Approved | |
Python VSCode Extension 2020.10.332292344 | 575 | Thursday, October 29, 2020 | Approved | |
Python VSCode Extension 2020.9.114305 | 655 | Wednesday, October 7, 2020 | Approved | |
Python VSCode Extension 2020.9.112786 | 387 | Wednesday, September 30, 2020 | Approved | |
Python VSCode Extension 2020.9.111407 | 351 | Thursday, September 24, 2020 | Approved | |
Python VSCode Extension 2020.8.109390 | 390 | Wednesday, September 16, 2020 | Approved | |
Python VSCode Extension 2020.8.108011 | 347 | Thursday, September 10, 2020 | Approved | |
Python VSCode Extension 2020.8.106424 | 296 | Friday, September 4, 2020 | Approved | |
Python VSCode Extension 2020.8.105369 | 278 | Tuesday, September 1, 2020 | Approved | |
Python VSCode Extension 2020.8.105045 | 274 | Friday, August 28, 2020 | Approved | |
Python VSCode Extension 2020.8.103604 | 309 | Saturday, August 22, 2020 | Approved | |
Python VSCode Extension 2020.8.101144 | 392 | Thursday, August 13, 2020 | Approved | |
Python VSCode Extension 2020.7.96456 | 505 | Friday, July 24, 2020 | Approved | |
Python VSCode Extension 2020.7.94776 | 395 | Friday, July 17, 2020 | Approved | |
Python VSCode Extension 2020.6.91350 | 444 | Wednesday, July 1, 2020 | Approved | |
Python VSCode Extension 2020.6.90262 | 293 | Friday, June 26, 2020 | Approved | |
Python VSCode Extension 2020.6.89148 | 292 | Saturday, June 20, 2020 | Approved | |
Python VSCode Extension 2020.6.88468 | 261 | Wednesday, June 17, 2020 | Approved | |
Python VSCode Extension 2020.5.86806 | 315 | Thursday, June 11, 2020 | Approved | |
Python VSCode Extension 2020.5.86398 | 243 | Tuesday, June 9, 2020 | Approved | |
Python VSCode Extension 2020.5.80290 | 563 | Wednesday, May 20, 2020 | Approved | |
Python VSCode Extension 2020.5.78807 | 359 | Wednesday, May 13, 2020 | Approved | |
Python VSCode Extension 2020.4.76186 | 538 | Tuesday, April 28, 2020 | Approved | |
Python VSCode Extension 2020.4.74986 | 297 | Tuesday, April 21, 2020 | Approved | |
Python VSCode Extension 2020.3.71113 | 432 | Wednesday, April 1, 2020 | Approved | |
Python VSCode Extension 2020.3.69010 | 274 | Saturday, March 21, 2020 | Approved | |
Python VSCode Extension 2020.2.64397 | 437 | Saturday, February 22, 2020 | Approved | |
Python VSCode Extension 2020.2.63990 | 139 | Thursday, February 20, 2020 | Approved | |
Python VSCode Extension 2020.2.63072 | 223 | Thursday, February 13, 2020 | Approved | |
Python VSCode Extension 2020.2.62710 | 152 | Wednesday, February 12, 2020 | Approved | |
Python VSCode Extension 2020.1.58038 | 413 | Tuesday, January 14, 2020 | Approved | |
Python VSCode Extension 2020.1.57204 | 203 | Wednesday, January 8, 2020 | Approved | |
Python VSCode Extension 2019.11.50794 | 311 | Friday, November 22, 2019 | Approved | |
Python VSCode Extension 2019.11.49689 | 130 | Tuesday, November 19, 2019 | Approved | |
Python VSCode Extension 2019.10.44104 | 274 | Saturday, November 9, 2019 | Approved |
Copyright 2016-2022 Microsoft Corporation
-
- chocolatey-vscode.extension (≥ 1.1.0)
Ground Rules:
- This discussion is only about Python VSCode Extension and the Python VSCode Extension package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Python VSCode Extension, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.