Skip to content

Commit cc089d7

Browse files
committed
Merge pull request #3 from ader1990/latest
Addded easy_install setup
2 parents ccbf63f + c9dfaea commit cc089d7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

nova-havana-windows-install.ps1

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,13 @@ del $filename
174174
$ENV:PATH += ";$ENV:ProgramFiles (x86)\Git\bin\"
175175
# In "%ProgramFiles% (x86)\Git\etc\gitconfig" set "autocrlf = false"
176176

177-
InstallPythonDep "https://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11.win32-py2.7.exe#md5=57e1e64f6b7c7f1d2eddfc9746bbaf20" "setuptools-0.6c11.win32-py2.7.exe"
177+
$filename="ez_setup.py"
178+
$url = "https://bitbucket.org/pypa/setuptools/raw/bootstrap/$filename"
179+
Write-Host "Downloading and installing: $url"
180+
(new-object System.Net.WebClient).DownloadFile($url, "$pwd\$filename")
181+
python $filename
182+
183+
#InstallPythonDep "https://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11.win32-py2.7.exe#md5=57e1e64f6b7c7f1d2eddfc9746bbaf20" "setuptools-0.6c11.win32-py2.7.exe"
178184
InstallPythonDep "https://pypi.python.org/packages/2.7/p/pyOpenSSL/pyOpenSSL-0.13.1.win32-py2.7.exe#md5=02b016ed32fffcff56568e5834edcae6" "pyOpenSSL-0.13.1.win32-py2.7.exe"
179185
InstallPythonDep "https://pypi.python.org/packages/2.7/g/greenlet/greenlet-0.4.1.win32-py2.7.exe#md5=8f12784e041be3d795fb2d6771b3af76" "greenlet-0.4.1.win32-py2.7.exe"
180186
InstallPythonDep "https://pypi.python.org/packages/2.7/l/lxml/lxml-3.2.4.win32-py2.7.exe#md5=bf69543928b7f5f638d30b8eddedda09" "lxml-3.2.4.win32-py2.7.exe"

0 commit comments

Comments
 (0)