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
We recommend following the binary install instructions to get up and running as
@@ -50,6 +51,27 @@ installing Gazebo from source.
50
51
brew install gz-sim<#>
51
52
```
52
53
54
+
### Windows
55
+
56
+
First, follow the [gz-cmake](https://gazebosim.org/api/cmake/4/install.html) tutorial for installing Conda, Visual Studio, CMake, and other prerequisites, and also for creating a Conda environment.
57
+
58
+
Navigate to ``condabin`` if necessary to use the ``conda`` command (i.e., if Conda is not in your `PATH` environment variable. You can find the location of ``condabin`` in Anaconda Prompt, ``where conda``).
59
+
60
+
Create if necessary, and activate a Conda environment:
61
+
```
62
+
conda create -n gz-ws
63
+
conda activate gz-ws
64
+
```
65
+
66
+
Now install Gazebo.
67
+
68
+
```
69
+
conda install gz-sim<#> --channel conda-forge
70
+
```
71
+
72
+
Be sure to replace `<#>` with a number value, such as 8 or 9, depending on
73
+
which version you need.
74
+
53
75
## Source Install
54
76
55
77
Install from source if you're interested in changing the source code or need a
@@ -115,6 +137,43 @@ feature which hasn't been released yet.
115
137
sudo make install
116
138
```
117
139
140
+
### Windows
141
+
142
+
This assumes you have created and activated a Conda environment (the same way as in the
143
+
binary install).
144
+
145
+
1. Install Gazebo dependencies:
146
+
147
+
You can view available versions and their dependencies:
0 commit comments