问题描述
- Ubuntu server 15.0.4安装Redis make命令不能执行
-
按照官方的下载安装指导:http://redis.io/download#installationDownload, extract and compile Redis with:
$ wget http://download.redis.io/releases/redis-3.0.3.tar.gz
$ tar xzf redis-3.0.3.tar.gz
$ cd redis-3.0.3
$ makeThe binaries that are now compiled are available in thesrcdirectory. Run Redis with:
$ src/redis-serverYou can interact with Redis using the built-in client:
$ src/redis-cli
redis> set foo bar
OK
redis> get foo
"bar"我在执行make命令的时候执行不下去了,为嘛我不能使用make命令呢?我下载包解压后,使用make 提示The program 'make' can not be found in following packages.* make .... * make-gradle .......求解释,对Ubuntu不是很熟,请大仙指教!
操作截图:
在sudo高级权限下操作make还是不行:原因:Ubuntu需要安装gcc工具;
最终问题解决方案:
安装gcc前执行$sudo apt-get update,若不成功再执行$sudo apt-get clean:
$sudo apt-get clean
$sudo apt-get update
$sudo apt-get build-dep gcc
按照上面处理就可以使用make命令了。
解决方案
你要看看你的redis-3.0.3 目录下有没有生成makefile
你可以configure先配置一下
解决方案二:
到Redis的src目录下configure,make