mirror of https://github.com/patacrep/patacrep.git
Luthaf
11 years ago
2 changed files with 15 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
setx path "%path%;C:\Python27;C:\Python27\Scripts;" |
|||
|
|||
setx pathext "%pathext%;.py" |
|||
|
|||
cscript /nologo windows/wget.js https://raw.github.com/pypa/pip/master/contrib/get-pip.py > get-pip.py |
|||
|
|||
C:\Python27\Python.exe get-pip.py |
|||
|
|||
C:\Python27\Scripts\pip install -r Requirements.txt |
|||
|
|||
C:\Python27\Python.exe setup.py install |
@ -0,0 +1,4 @@ |
|||
var WinHttpReq = new ActiveXObject("WinHttp.WinHttpRequest.5.1"); |
|||
WinHttpReq.Open("GET", WScript.Arguments(0), /*async=*/false); |
|||
WinHttpReq.Send(); |
|||
WScript.Echo(WinHttpReq.ResponseText); |
Loading…
Reference in new issue