How to install Python 2.7 and 3.6 in Windows 10 [add python PATH]
This tutorial will describe how to install both Python versions (2.7 and 3.6) on a Windows 10 environment. Additionally, how to add python…
How To Set Up a Virtual Python Environment (Windows) — mothergeo 0.0.1 documentation
then,
1 | python2 -m ensurepip |
PostgreSQL
1 | Bakground: pg_config is the configuration utility provided by PostgreSQL. This utility is used by various applications. |
Powershell env refresh
function refresh-path {
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") +
";" +
[System.Environment]::GetEnvironmentVariable("Path","User")
}
refresh-path
[
Reload the path in PowerShell
If I have an instance of PowerShell ISE running and I install something that modifies the PATH or I modify it in any way outside of PowerShell then I need to restart PowerShell for it to see the up…
Stack Overflowrob
](https://stackoverflow.com/questions/17794507/reload-the-path-in-powershell)
Before all
1 | python -m pip install -U pip setuptools |