2016-07-28 26 views
2

我有以下時嘗試安裝的Redis 3.2.1這個問題:問題與Redis的安裝 - 地理散列-INT/geohash.o

[[email protected] redis-3.2.1]# make 
cd src && make all 
make[1]: Entering directory `/tmp/redis-3.2.1/src' 
LINK redis-server 
cc: ../deps/geohash-int/geohash.o: No such file or directory 
cc: ../deps/geohash-int/geohash_helper.o: No such file or directory 
make[1]: *** [redis-server] Error 1 
make[1]: Leaving directory `/tmp/redis-3.2.1/src' 
make: *** [all] Error 2 

可能有人點我到正確的方向? 我已經看到這樣的錯誤和解決方案已cd到德普和運行使......問題。

我應該在這裏運行什麼?

謝謝 加布裏埃爾

+0

嘗試運行'make distclean all' –

回答

9

我已經去DEPS文件夾,解決了它,並運行make地理散列-INT

謝謝!

Gabriel