@@ -125,3 +125,62 @@ use `uv run` or activate the project's virtual environment manually.
125125 [ uvtool ] : https://docs.astral.sh/uv/concepts/tools/#tool-environments
126126
127127
128+ !!! tip "Other tools using PyPI"
129+ There are, of course, other dependency managers and build tools in the
130+ Python ecosystem that use PyPI as the repository. Installing Zensical with
131+ them should be similar to the process of installing with ` uv ` . Refer to
132+ their documentation for details.
133+
134+ ## Third-party distributions
135+
136+ There are other distributions that make Zensical available but they may or may
137+ not use the official packages we distribute exclusively through PyPI. You can
138+ use these distributions if you have good reasons to do so but for normal use we
139+ recommend the installation methods above that we officially support.
140+
141+
142+ ### Install with Anaconda/Mamba { data-toc-label="Anaconda/Mamba" }
143+
144+ Zensical is available in the [ conda-forge] community repository so that it can
145+ be installed using [ Anaconda] or [ Mamba] .
146+
147+ [ conda-forge ] : https://conda-forge.org/
148+ [ Anaconda ] : https://www.anaconda.com
149+ [ Mamba ] : https://mamba.readthedocs.io
150+
151+ !!! warning
152+ We cannot provide support for distributions we do not control. If you
153+ experience any issues please contact the maintainers of
154+ [ conda-forge/zensical-feedstock] .
155+
156+ [ conda-forge/zensical-feedstock ] : https://github.com/conda-forge/zensical-feedstock
157+
158+ === ":material-apple: macOS"
159+ ```
160+ conda create -n zensical python=3.14
161+ conda activate zensical
162+ conda install -c conda-forge zensical
163+ ```
164+
165+ === ":fontawesome-brands-windows: Windows"
166+
167+ If you are using Anaconda or Mamaba, make sure that the base environment is
168+ activated. If you are using Anaconda, you can just open an [Anaconda
169+ Prompt]. If you installed Mamba as part of [Miniforge], there will be an
170+ equivalent Miniforge Prompt.
171+
172+ ```
173+ conda create -n zensical python=3.14
174+ conda activate zensical
175+ conda install -c conda-forge zensical
176+ ```
177+
178+ === ":material-linux: Linux"
179+ ```
180+ conda create -n zensical python=3.14
181+ conda activate zensical
182+ conda install -c conda-forge zensical
183+ ```
184+
185+ [ Anaconda Prompt ] : https://www.anaconda.com/docs/reference/glossary#anaconda-prompt
186+ [ Miniforge ] : https://conda-forge.org/download/
0 commit comments