Skip to content Skip to sidebar Skip to footer

Fatal Error C1083: Cannot Open Include File: 'magic.h': No Such File Or Directory

trying to run a django server on my windows 10 computer. When I execute python manage.py runserver, I get the following error: fatal error C1083: Cannot open include file: 'magic.h

Solution 1:

This issue was discussed in GitHub: https://github.com/ahupp/python-magic/issues/154

It seems that solution is to reinstall libmagic "pip install libmagic" and/or "pip install python-magic" (the environment I work with uses both) and download Windows-specific file from https://pypi.python.org/pypi/python-magic-bin/0.4.14 and install that with "pip install " to your Python-environment.


Post a Comment for "Fatal Error C1083: Cannot Open Include File: 'magic.h': No Such File Or Directory"