Skip to content

Instantly share code, notes, and snippets.

@techthoughts2
Last active February 10, 2019 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techthoughts2/3791a7eb3eaef972cc2cb5efebfbe77e to your computer and use it in GitHub Desktop.
Save techthoughts2/3791a7eb3eaef972cc2cb5efebfbe77e to your computer and use it in GitHub Desktop.
Chocolatey install of python on windows
#from admin console window
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install python
#now setup for cf-lint
python -m pip install --upgrade pip
pip install cfn-lint
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment