Skip to content

Instantly share code, notes, and snippets.

View eliziario's full-sized avatar

Marcos Eliziario Santos eliziario

View GitHub Profile
@eliziario
eliziario / install_python.ps1
Last active October 25, 2017 17:49 — forked from carlosfunk/install_python.ps1
Powershell scripts for setting up a Python environment under Windows
$save_dir=Resolve-Path ~/Downloads
$project_dir = "C:\Projects"
$virtualenv_dir = $project_dir + "\virtualenvs"
$client = New-Object System.Net.WebClient
function InstallPythonExe($installer) {
$Arguments = @()
$Arguments += "InstallAllUsers=`"1`""
$Arguments += "DefaultCustomTargetDir=C:\\Python"