20👍
It seems there is no python-dev
package for Windows. But the Python installer for Windows will normally install a sub directory include
inside the main Python dir.
So with Python in C:\Python
you would get:
- C:\Python
- C:\Python\DLLs
- C:\Python\Doc
- C:\Python\include
- C:\Python\Lib
- C:\Python\libs
- C:\Python\Scripts
- C:\Python\tcl
- C:\Python\Tools
Inside this include
directory you will find Python.h
, which can be included or referenced.
3👍
When I used to develop on Windows, this website with pre-compiled binaries was extremely handy: http://www.lfd.uci.edu/~gohlke/pythonlibs/
You’ll find pre-compiled versions of PIL and ReportLab there. Hope that helps you out.
- [Django]-How to pass a message from HttpResponseRedirect in Django?
- [Django]-Unable to find a locale path to store translations for file __init__.py
- [Django]-What's the difference between `from django.conf import settings` and `import settings` in a Django project
2👍
- [Django]-Django viewset has not attribute 'get_extra_actions'
- [Django]-Django readonly field only on change, but not when creating
- [Django]-Single Django model, multiple tables?
Source:stackexchange.com