Binary Installation on Windows 10#
Most Gazebo packages are available in Windows 10 using the conda-forge package manager, and the Gazebo feedstock recipes can be found here.
In order to use conda-forge
, you will need to
Install a Conda package management system. Miniconda suffices. You will likely want to check the box to add
conda
to yourPATH
during the installation process so that you won’t have to do this step manually.Open a Windows command prompt, being sure to have
conda
added to your WindowsPATH
system environment variable (you may also need to open a new command prompt to see anyPATH
changes reflected).
If you did not add Conda to your PATH
environment variable
during Conda installation, you may need to navigate to the
location of condabin
in order to use the conda
command.
To find condabin
, search for “Anaconda Prompt” in the
Windows search field near the Windows button, open it, run
where conda
, and look for a line containing the directory condabin
.
Create and activate a new Conda environment:
conda create -n gz-env
conda activate gz-env
Install desired Gazebo packages you want to install based on your application. Packages with the prefix
libgz-
contain only the C++ libraries while the Python bindings are available separately asgz-<package_name><#>-python
. To install both with a single command usegz-<package_name><#>
. Thus you can usegz-sim<#>
to fully install the latest version of Gazebo.
conda install libgz-<package_name><#> --channel conda-forge
Be sure to replace <package_name>
with your desired package name (ie, common, msgs, etc.)
and <#>
with the release version. If left unspecified, conda-forge
will install the
most recently stable release packages. Be sure to check the
high level install instructions for corresponding version numbers.
Note
You can view all available versions of a specific package with:
conda search libgz-<package_name>* --channel conda-forge
and view their dependencies with
conda search libgz-<package_name>* --channel conda-forge --info
and install a specific minor version with
conda install libgz-<package_name>=<major>.<minor>.<patch> --channel conda-forge
where <major>
is the major release number, <minor>
is the minor release number, and <patch
is the patch release number.
Uninstalling binary install#
If you need to uninstall Gazebo or switch to a source-based install once you have already installed the library from binaries, run the following command:
conda uninstall libgz-<package_name> --channel conda-forge
Troubleshooting#
See Troubleshooting