python - error: command 'i686-linux-gnu-gcc' failed with exit status 1 while installing pylibbvg -
i'm installing pylibvg, , many links similar error different installations. tried few things keep getting error. basically, trying run: sudo python setup.py build_ext --inplace
i have executed following:
pip install cython sudo apt-get update sudo apt-get install python-dev
any ideas why i'm getting errors?
python.h nothing header file. used gcc build applications. need install package called python-dev. package includes header files, static library , development tools building python modules, extending python interpreter or embedding python in applications. install package, enter:
$ sudo apt-get install python-dev
or
$ apt-get install python-dev
ref: http://www.cyberciti.biz/faq/debian-ubuntu-linux-python-h-file-not-found-error-solution/
Comments
Post a Comment