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

Added info for conda installation problems #51

Merged
merged 20 commits into from
Jan 5, 2023
Merged
Changes from 1 commit
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
10 changes: 9 additions & 1 deletion docs/tutorials/fundamentals/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,16 @@ If you want to install napari with PySide2 as the backend you need to install it

```sh
conda install -c conda-forge "napari=*=*pyside2"
```
```
````

````{note}
It can happend that `conda`'s build-in solver is not able to solve all denpendencies. This can happen even in a clean environment
Chris-N-K marked this conversation as resolved.
Show resolved Hide resolved
depending on your operating system. In this case use `pip` for the installation or if that is no option, install `mamba` and use
psobolewskiPhD marked this conversation as resolved.
Show resolved Hide resolved
it in place of `conda` to install from `conda-forge`.
Chris-N-K marked this conversation as resolved.
Show resolved Hide resolved
```sh
mamba install -c conda-forge "napari=*=*pyside2"
```
````


Expand Down