8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0863a61 + 6d284cc commit 78f361fCopy full SHA for 78f361f
appveyor.yml
@@ -14,6 +14,8 @@ install:
14
- ps: (new-object net.webclient).DownloadFile($env:pythonurl, 'C:\python.msi')
15
- ps: start-process -wait -FilePath msiexec.exe -ArgumentList "/qn /i C:\python.msi TARGETDIR=C:\Python"
16
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:\get-pip.py')
17
+ # appveyor has python 2.7.6 x86 preinstalled, but in the wrong directory, this works around this
18
+ - ps: if ($env:pythonurl -eq "http://www.python.org/ftp/python/2.7.6/python-2.7.6.msi") {mi c:\python27 c:\python}
19
- C:\Python\python.exe c:\get-pip.py
20
- C:\Python\Scripts\pip.exe install wheel
21
0 commit comments