Closed harish211 closed 5 years ago
Windows is missing a header file, stdint.h
. I'll look into this issue tomorrow.
I've seen this issue before, let me copy the relevant part from an isso issue:
The compiler cannot find the so-called "C (C99) headers", which don't appear to be bundled with your version of VC++. This affects the compilation of any software which needs the C99 headers, including Python libraries which have C99 extensions such as Misaka.
You can still download free, open-source versions of the headers. Here are some relevant links: https://stackoverflow.com/questions/126279/c99-stdint-h-header-and-ms-visual-studio http://deeplearning.net/software/theano/install_windows.html#visual-studio-and-cuda
The last link says:
Finally download the stdint.h header from here and save it as C:\Program Files (x86)\Common Files\Microsoft\Visual C++ for Python\9.0\VC\include\stdint.h.
That's it. Having binary packages for Windows would solve this too. I don't have access to a Windows installation. I can ask a friend to compile a package.
Thanks, Sprin I solved the problem. 1, Download Visual C++ for Python from https://www.microsoft.com/download/details.aspx?id=44266 2, My installation path is 'C:\Users\lucker\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0' 3, Copy stdint.h to installation path.
step 3 above should be revised to:
Copy stdint.h to installation path\VC\include
Is it possible to upload binary packages?
If you are using a Debian-based GNU/Linux distribution you need to install the libffi-dev package.
I got Same error It says
build/temp.linux-x86_64-3.5/misaka._hoedown.c:12:24: fatal error: pyconfig.h: No such file or directory
can anyone help, please?
I found the solution, just install python3-dev for python3.
Pip install misaka gives me an error = Failed building wheel for misaka, error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools
Do I need to have any other packages/programs pre-installed to get this working? I keep getting the error even if I use the downgraded version of misaka, which is not the case for most, AFAIK. Any help in this regard is highly appreciated. Thank you!