Try to install Numpy: SystemError: Cannot compile 'Python.h'
Try to install Numpy: SystemError: Cannot compile 'Python.h'
我目前正在使用在 Linux 的 yocto 发行版上运行的 Cisco。它已经安装了 Python 2.7.3,我们要为这个 python 安装 numpy。
但是,当我尝试执行 python setup.py install
时,它给了我:
SystemError: Cannot compile 'Python.h'. Perhaps you need to install python-dev|python-devel.
看来,这是一个问题,因为我没有安装 python-devel。
因为 Cisco 机器没有配置到互联网连接(很难配置),我不能只做 sudo apt-get install python-dev
来为我抓取文件。
如何解决这个错误(没有互联网连接)?
从有互联网连接的地方下载 python-dev deb 文件到外部驱动器,将驱动器安装在 Cisco 上并使用
安装 .deb
# dpkg -i debfile.deb
编辑:如果你还需要安装依赖项,试试这个:http://www.tuxradar.com/answers/517
我目前正在使用在 Linux 的 yocto 发行版上运行的 Cisco。它已经安装了 Python 2.7.3,我们要为这个 python 安装 numpy。
但是,当我尝试执行 python setup.py install
时,它给了我:
SystemError: Cannot compile 'Python.h'. Perhaps you need to install python-dev|python-devel.
看来,这是一个问题,因为我没有安装 python-devel。
因为 Cisco 机器没有配置到互联网连接(很难配置),我不能只做 sudo apt-get install python-dev
来为我抓取文件。
如何解决这个错误(没有互联网连接)?
从有互联网连接的地方下载 python-dev deb 文件到外部驱动器,将驱动器安装在 Cisco 上并使用
安装 .deb# dpkg -i debfile.deb
编辑:如果你还需要安装依赖项,试试这个:http://www.tuxradar.com/answers/517