Install Redis on Windows10 without admin rights
<p>To install Redis on Windows10, you need to enable <a href="https://docs.microsoft.com/en-us/windows/wsl/install" rel="noopener ugc nofollow" target="_blank">WSL2</a> (Windows Subsystem for Linux). WSL2 lets you run Linux binaries natively on Windows.</p>
<p>If you are running old WSL, you need to enable WSL2 by following <a href="https://learn.microsoft.com/en-us/windows/wsl/install-manual#step-1---enable-the-windows-subsystem-for-linux" rel="noopener ugc nofollow" target="_blank">this</a> instruction.<em> </em><strong><em>Unfortunately, enabling WSL2 requires admin right though :(</em></strong></p>
<p>Prerequisite:</p>
<ul>
<li>You have WSL2 enabled Windows 10 or Windows 11.</li>
<li>You have <a href="https://git-scm.com/download/win" rel="noopener ugc nofollow" target="_blank">Git</a> installed.</li>
<li>You have Curl installed.</li>
</ul>
<pre>
C:\> wsl -l -v
NAME STATE VERSION
* docker-desktop Running 2
docker-desktop-data Running 2
C:\>curl -V
curl 8.0.1 (Windows) libcurl/8.0.1 Schannel WinIDN
...
C:\>git --version
git version 2.39.1.windows.1</pre>
<p>Assuming you have WSL2, Git and Curl installed, what you need to do is to install Redis server and ResisJson from source code.</p>
<p><a href="https://allenhwkim.medium.com/install-redis-onwindows10-without-admin-rights-502c2045c37e"><strong>Website</strong></a></p>