You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <imgsrc="https://www.pngplay.com/wp-content/uploads/3/Apple-Logo-Transparent-Images.png"width="15"height="15"alt="MacOS" /> **MacOS**|<imgsrc="https://upload.wikimedia.org/wikipedia/en/b/ba/Red_x.svg"width="20"height="20"alt="Not Supported" />| <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | - Docker Desktop version must be 4.25.2 or above<br/> - For running Keploy on MacOS natively, refer to [Guide](/keploy-explained/mac-linux.md)|
30
+
| <imgsrc="https://www.pngplay.com/wp-content/uploads/3/Apple-Logo-Transparent-Images.png"width="15"height="15"alt="MacOS" /> **MacOS**|[Guide](/keploy-explained/mac-linux.md)|[Guide](/docs/server/installation/#other-installation-methods)| - Docker Desktop version must be 4.25.2 or above<br/> |
31
31
| <imgsrc="https://upload.wikimedia.org/wikipedia/commons/5/5f/Windows_logo_-_2012.svg"width="15"height="15"alt="Windows" /> **Windows**| <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | - Use [WSL](https://learn.microsoft.com/en-us/windows/wsl/install#install-wsl-command)`wsl --install` <br/> - Windows 10 version 2004 and higher (Build 19041 and higher) or Windows 11 |
32
32
| <imgsrc="https://th.bing.com/th/id/R.7802b52b7916c00014450891496fe04a?rik=r8GZM4o2Ch1tHQ&riu=http%3a%2f%2f1000logos.net%2fwp-content%2fuploads%2f2017%2f03%2fLINUX-LOGO.png&ehk=5m0lBvAd%2bzhvGg%2fu4i3%2f4EEHhF4N0PuzR%2fBmC1lFzfw%3d&risl=&pid=ImgRaw&r=0"width="10"height="10"alt="Linux" /> **Linux**| <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | Linux kernel 5.15 or higher |
3. Now, with the help of homebrew, we would install Lima (Linux Virtual Machine) by running this command.
19
19
20
-
```bash
21
-
brew install lima
22
-
```
20
+
```bash
21
+
brew install lima
22
+
```
23
23
24
24
4. Create a Debian instance.
25
25
26
-
```bash
27
-
limactl create template://debian-12
28
-
```
26
+
```bash
27
+
limactl create template://debian-12
28
+
```
29
29
30
30
5. Start the instance
31
31
32
-
```bash
33
-
limactl start debian-12
34
-
```
32
+
```bash
33
+
limactl start debian-12
34
+
```
35
35
36
36
6. Enter the shell of the running linux instance
37
37
38
-
```bash
39
-
limactl shell debian-12
40
-
```
38
+
```bash
39
+
limactl shell debian-12
40
+
```
41
41
42
-
7. Now you are in the linux shell of the debian instance. Now, run the following command to go the `Users` into your directory
42
+
7. Now you are in the linux shell of the debian instance. Replace `{Username}` with your actual macOS username in the following command. This will take you directly to your macOS home directory. (You might need to allow access to Terminal.app in a popup)
43
43
44
-
```bash
45
-
cd /Users
46
-
```
44
+
```bash
45
+
cd /Users/{Username}
46
+
```
47
47
48
-
8.Replace the `Username` with your macOS username in the following command. This will take you to your macOS home directory. (You might need to allow access to Terminal.app in a popup)
48
+
8.Run the following commandto install Keploy
49
49
50
-
```bash
51
-
cd /{Username}
52
-
```
50
+
```bash
51
+
curl --silent --location "https://github.com/keploy/keploy/releases/latest/download/keploy_linux_arm64.tar.gz"| tar xz --overwrite -C /tmp
**Why?** : zsh (Z Shell) is an advanced shell that offers enhanced features compared to the default bash shell. It provides better autocompletion, advanced globbing, improved history management, and more customization options.
62
62
63
-
```bash
64
-
sudo apt-get -y install zsh
65
-
```
63
+
10. Install Git
66
64
67
-
**Why?** : zsh (Z Shell) is an advanced shell that offers enhanced features compared to the default bash shell. It provides better autocompletion, advanced globbing, improved history management, and more customization options.
65
+
```bash
66
+
sudo apt-get -y install git
67
+
```
68
68
69
-
11. Install Git
69
+
11. Install 'Oh-my-zsh'
70
70
71
-
```bash
72
-
sudo apt-get -y install git
73
-
```
71
+
```bash
72
+
sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
73
+
```
74
74
75
-
12. Install 'Oh-my-zsh'
75
+
**Why?**: oh-my-zsh is a framework for managing your zsh configuration. It comes with a collection of plugins, themes, and helpful features that enhance the zsh experience.
76
76
77
-
```bash
78
-
sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
79
-
```
77
+
12. Commands to Install docker
80
78
81
-
**Why?** : oh-my-zsh is a framework for managing your zsh configuration. It comes with a collection of plugins, themes, and helpful features that enhance the zsh experience.
| <imgsrc="https://www.pngplay.com/wp-content/uploads/3/Apple-Logo-Transparent-Images.png"width="15"height="15"alt="MacOS" /> **MacOS**|<imgsrc="https://upload.wikimedia.org/wikipedia/en/b/ba/Red_x.svg"width="20"height="20"alt="Not Supported" />| <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | - Docker Desktop version must be 4.25.2 or above<br/> - For running Keploy on MacOS natively, refer to [Guide](/keploy-explained/mac-linux.md)|
30
+
| <imgsrc="https://www.pngplay.com/wp-content/uploads/3/Apple-Logo-Transparent-Images.png"width="15"height="15"alt="MacOS" /> **MacOS**|[Guide](/keploy-explained/mac-linux.md)|[Guide](/docs/server/installation/#other-installation-methods)| - Docker Desktop version must be 4.25.2 or above<br/> |
31
31
| <imgsrc="https://upload.wikimedia.org/wikipedia/commons/5/5f/Windows_logo_-_2012.svg"width="15"height="15"alt="Windows" /> **Windows**| <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | - Use [WSL](https://learn.microsoft.com/en-us/windows/wsl/install#install-wsl-command)`wsl --install` <br/> - Windows 10 version 2004 and higher (Build 19041 and higher) or Windows 11 |
32
32
| <imgsrc="https://th.bing.com/th/id/R.7802b52b7916c00014450891496fe04a?rik=r8GZM4o2Ch1tHQ&riu=http%3a%2f%2f1000logos.net%2fwp-content%2fuploads%2f2017%2f03%2fLINUX-LOGO.png&ehk=5m0lBvAd%2bzhvGg%2fu4i3%2f4EEHhF4N0PuzR%2fBmC1lFzfw%3d&risl=&pid=ImgRaw&r=0"width="10"height="10"alt="Linux" /> **Linux**| <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | <imgsrc="https://upload.wikimedia.org/wikipedia/commons/e/e5/Green_tick_pointed.svg"width="20"height="20"alt="Supported" /> | Linux kernel 5.15 or higher |
0 commit comments