本文主要是介绍RYU安装与遇见的错误,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.
gcc no such file or directory
是gcc 没有安装#yum install gcc
#yum install gcc-c++
2
In file included from greenlet.c:5:0:
greenlet.h:8:20: 致命错误: Python.h:没有那个文件或目录
编译中断。
error: Setup script exited with error: command 'gcc' failed with exit status 1
解决方法是如下,这是Python的头文件和静态库包:
CentOS 使用下面命令# yum install python-devel Ubuntu下 # apt-get install python-dev
3.安装git
yum install git
4.git clone git://github.com/osrg/ryu.git
5.
#cd ryu;
#python setup.py install
这篇关于RYU安装与遇见的错误的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!