Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note about Windows installation #581

Merged
merged 1 commit into from
Jun 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/user/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Now, you can install the latest stable release using:

$ conda install torchgeo

.. note:: The installation of torchgeo in this manner is not supported on Windows since pytorch from the conda-forge channel currently does not support Windows. Users are recommended to create a custom conda environment and install torchgeo as shown below.

Conda does not directly support installing development versions, but you can use conda to install our dependencies, then use pip to install TorchGeo itself.

Expand All @@ -67,8 +68,6 @@ Conda does not directly support installing development versions, but you can use
$ conda activate torchgeo
$ pip install .

.. note:: The above method will not work on Windows. Windows users are recommended to create a conda environment and install dependencies via pip.

Conda does not directly support optional dependencies. If you install from conda-forge, only required dependencies will be installed by default. Optional dependencies can be installed afterwards using pip. If you install using the ``environment.yml`` file, all optional dependencies are installed by default.

See the `conda-forge documentation <https://conda-forge.org/>`_ for more details.
Expand Down