Is the installation guide for Redis supposed to work in Linux? #1624
Unanswered
ShaneMaglangit
asked this question in
Q&A
Replies: 2 comments
-
Hi @ShaneMaglangit - please consider using the Discord server / help wanted channel to get immediate help. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I know this discussion is quite old, but maybe someone wonder if homebrew works on linux: it works So Redis can be installed with
But I suggest to use distro package manager in first place Debian/Ubuntucurl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
sudo apt-get update
sudo apt-get install redis Arch Linuxsudo pacman -S redis Fedorasudo dnf install redis DockerI personally prefer to use databases/services just inside Docker, because I don't like running them on my local machine directly. docker run -p 6379:6379 -d redis |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm fairly new with Redis. I attempted to follow the provided guide to install dependencies.
Is the Redis installation guide using brew supposed to work in Linux/WSL?
Looking on other articles/threads, it seems like its only used for macOS while snap/apt must be used for Linux.
Perhaps we could add some sort of note to specify that it only works for macOS. Furthermore, we could probably add alternative guides / tab for other OS.
I know that contributors could simply search for installation instructions on other sites but I feel like it'll be really helpful to just have it on the same page.
Beta Was this translation helpful? Give feedback.
All reactions