安装redis报错 cc: command not found

1、下载redis后 make 编译时报错

cd src && make all
make[1]: Entering directory /root/jevel/redis-2.8.17/src‘<br/>CC adlist.o<br/>/bin/sh: cc: command not found<br/>make[1]: *** [adlist.o] Error 127<br/>make[1]: Leaving directory/root/jevel/redis-2.8.17/src‘
make: *** [all] Error 2

2、安装gcc

yum install gcc

3、删除redis解压文件夹,重新解压

4、cd redis文件,重新make即可。

原文地址:http://blog.51cto.com/8772603/2175018

时间: 2024-11-05 14:47:28

安装redis报错 cc: command not found的相关文章

安装MySQL-python报错error: command &#39;gcc&#39; failed with exit status 1

[[email protected] MySQL-python-1.2.3]# python setup.py install function) .... _mysql.c:133: error: 'ER_SYNTAX_ERROR' undeclared (first use in this function) _mysql.c:380: error: '_mysql_ConnectionObject' has no member named 'connection' _mysql.c:382

Redis报错“ OOM command not allowed when used memory &gt; &#39;maxmemory&#39; ”

生产环境上遇到这个问题,控制台不停打印 “OOM command not allowed when used memory > 'maxmemory' ”; 起初不知道是什么,经过一番搜索: 1.登陆redis客户端:./redis-cli -h IP -p port -a passwd 2.执行命令:redis>info memory 若配置文件中,最大内存的策略设置为 maxmemory-policy volatile-lru 此配置只是清楚设置过期时间的key值,然而本应用并没有设置过期

mac下python3.6安装mysqlclient报错mysql_config: command

用mac在python3.6的环境下学习django,按照官网的步骤,却无法安装mysqlclient.报错mysql_config: command not found. 命令如下: $ pip3 install mysqlclient pip3是因为有两个python版本,给python3.6对应的pip起了个别名.不然提示找不到.报错如下: Collecting mysqlclient Using cached mysqlclient-1.3.12.tar.gz Complete outp

linux下安装redis报错问题。

1.使用tar -xzvf redis-2.4.5.tar.gz来解压安装包 2.使用make命令来编译Redis 如果出现错误需要查看是否缺少gcc gcc-c++ zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or directory zmalloc.h:55:2: error: #error "Newer version of jemalloc required" make[1]: *** [adlist.o]

python pip 安装redis报错

pip默认安装的是最新版本,redis和redis-py-cluster ,两个不兼容 建议按照以下方式安装: 1 pip install redis==2.10.6 2 pip install redis-py-cluster==1.3.5 原文地址:https://www.cnblogs.com/whycai/p/12635338.html

linux安装redis报错

问题:You need tcl 8.5 or newer in order to run the Redis test 解决办法: wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gzsudo tar xzvf tcl8.6.1-src.tar.gz  -C /usr/local/cd  /usr/local/tcl8.6.1/unix/sudo ./configuresudo makesudo make install

在WSL中安装swool报错 error: unrecognized command line option &#39;-V&#39; 的解决方法

Windows Subsystem for Linux Ubuntu中使用pecl安装swool时遇到错误"error: C compiler cannot create executables"."error: unrecognized command line option '-V'" 解决方法 先看解决方法, 将gcc版本降低到4.8即可,因为高版本gcc取消了-V参数: sudo apt install gcc-4.8 -y sudo update-alte

python安装locustio报错error: invalid command &#39;bdist_wheel&#39;的解决方法

locust--scalable user load testing tool writen in Python(是用python写的.规模化.可扩展的测试性能的工具) 安装locustio需要的环境条件是:Python2.6+,但是不支持Python3. 今天在cmd里运行pip install locustio,报错提示:error: invalid command 'bdist_wheel'. 原因:pip和setuptools的版本较低. 解决方案:升级pip和setuptools. 一

安装python模块报错 error: command &#39;gcc&#39; failed with exit status 1

最近在安装paramiko模块的时候,总是报错:error: command 'gcc' failed with exit status 1,一开始比较挠头.找了蛮多资料,说的大多都是说缺少Python-devel 包,然而并不是! 最后蛮费劲的找到了一遍短小但就是正确的博文:http://blog.csdn.net/fenglifeng1987/article/details/38057193 —————————————————————— 解决方法: 安装:yum install gcc li