Skip to content

Random note for Windows (for developers)

INADA Naoki edited this page Feb 13, 2017 · 3 revisions

Random note to build wheel on AppVeyor in the future...

get file from powershell

https://www.appveyor.com/docs/how-to/download-file/

PS > $source = "https://dev.mysql.com/get/Downloads/Connector-C/mysql-connector-c-6.1.9-winx64.msi"
PS > Invoke-WebRequest $source -OutFile mysql-connector-c-6.1.9-winx64.msi

extract msi file

http://superuser.com/a/307679

PS C:\work> msiexec.exe /a C:\Downloads\mysql-connector-c-6.1.9-win32.msi /qb TARGETDIR=c:\work\mc32
PS C:\work> dir C:\work\mc32
Clone this wiki locally