d4-core/server/install_server.sh

15 lines
224 B
Bash
Raw Normal View History

2019-01-03 16:31:54 +01:00
#!/bin/bash
set -e
set -x
sudo apt-get install python3-pip -y
python3 -m pip install -r requirement.txt
# REDIS #
test ! -d redis/ && git clone https://github.com/antirez/redis.git
pushd redis/
git checkout 5.0
make
popd