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
Begin recording your API calls and generating test cases with Keploy.
66
62
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.
68
-
69
-
11. Install Git
70
-
71
-
```bash
72
-
sudo apt-get -y install git
73
-
```
74
-
75
-
12. Install 'Oh-my-zsh'
76
-
77
-
```bash
78
-
sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
79
-
```
80
-
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.
Copy file name to clipboardExpand all lines: versioned_docs/version-2.0.0/server/windows/installation.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ By default, Docker Desktop may not be configured to work with all WSL 2 distros
104
104
105
105
For detailed instructions on how to configure `Docker Desktop` for WSL 2, please refer to the [official Docker documentation](https://docs.docker.com/desktop/wsl/).
106
106
107
-
### Creating Alias
107
+
### Create a network
108
108
109
109
We need to create a custom network for Keploy since we are using the Docker, therefore application container would
110
110
require `docker network` to act as the bridge between them.
0 commit comments