https://github.com/secretiveshell/enterprisepythoninstallnotes
A collection of notes from installing python in enterprise environments
https://github.com/secretiveshell/enterprisepythoninstallnotes
Last synced: 3 months ago
JSON representation
A collection of notes from installing python in enterprise environments
- Host: GitHub
- URL: https://github.com/secretiveshell/enterprisepythoninstallnotes
- Owner: SecretiveShell
- License: gpl-2.0
- Created: 2024-05-22T09:04:01.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-22T09:43:11.000Z (about 1 year ago)
- Last Synced: 2025-03-28T18:59:01.127Z (3 months ago)
- Language: PowerShell
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Installation Notes and documentation
## Scoop
Install scoop :
```powershell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
```setup extras repo for vscode + pycharm
```powershell
scoop install git
scoop bucket add extras
```## python
Install python for single user:
```powershell
scoop install python
```Install python [globally](https://github.com/ScoopInstaller/Scoop/wiki/Global-Installs) (requires administrator privileges):
```powershell
scoop install python --global
```## vscode
install vscode through scoop (needs extras bucket):
```powershell
scoop install vscode
```install python extension from extensions view or via the notification
## pycharm
install pycharm through scoop (needs extras bucket):
```powershell
scoop install pycharm
```## pip ignore ssl certificate
[add the trusted hosts to the pip configuration](https://stackoverflow.com/a/67796873):
```powershell
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
```