I have Python on my Ubuntu system, but gcc can't find Python.h

后端 未结 14 1815
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-27 13:10

I am on a school computer, so I can\'t install anything.

I am trying to create C code which can be run in Python. It seems all the articles I am finding on it requi

14条回答
  •  北荒
    北荒 (楼主)
    2020-11-27 13:37

    You need python-dev installed.
    For Ubuntu :
    sudo apt-get install python-dev # for python2.x installs sudo apt-get install python3-dev # for python3.x installs
    For more distros, refer -
    https://stackoverflow.com/a/21530768/6841045

提交回复
热议问题