timonwong / cyksuid

Fast Python implementation of KSUID (K-Sortable Globally Unique IDs) using Cython
BSD 3-Clause "New" or "Revised" License
52 stars 2 forks source link

Failed to install (compile) on windows 7 with MSVC for Python #5

Closed rskumar closed 6 years ago

rskumar commented 6 years ago

Python 2.7 MSVC for Python installed

Error Log -

    error: command 'C:\\Users\\xyz\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\amd64\\cl.exe' failed with exit status 2
timonwong commented 6 years ago

In order to get cyksuid compiled, a C99 compliant compiler is required. So you cannot get it work under Windows with MSVC ince MSVC is only C89 complaint.

timonwong commented 6 years ago

v0.2.0 should address this issue, please have a try.

rskumar commented 6 years ago

Thanks, pip install cyksuid works now on Windows 7 with MSVC for Python installed.