Install scoop :
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expressionsetup extras repo for vscode + pycharm
scoop install git
scoop bucket add extrasInstall python for single user:
scoop install pythonInstall python globally (requires administrator privileges):
scoop install python --globalinstall vscode through scoop (needs extras bucket):
scoop install vscodeinstall python extension from extensions view or via the notification
install pycharm through scoop (needs extras bucket):
scoop install pycharmadd the trusted hosts to the pip configuration:
pip config set global.trusted-host `
"pypi.org files.pythonhosted.org pypi.python.org" `
--trusted-host=pypi.python.org `
--trusted-host=pypi.org `
--trusted-host=files.pythonhosted.org