Skip to content

Install with conda #86

@beatrix-chan

Description

@beatrix-chan

Description

Zensical's package seems to be available on Anaconda via conda-forge channel but the documentation never mentioned it. I think this should be added to the documentation so user knows they have one more option.

Related links

Proposed change

### Install with conda { data-toc-label="with conda" }

If you are using any [Anaconda's Distribution][anaconda-doc], you can create a [virtual environment][anaconda-venv] using `conda`. Open [Anaconda Prompt][anaconda-prompt] and type in the following commands:

[anaconda-doc]: https://www.anaconda.com/docs/main/
[anaconda-venv]: https://www.anaconda.com/docs/getting-started/working-with-conda/environment/
[anaconda-prompt]: https://www.anaconda.com/docs/reference/glossary#anaconda-prompt

=== ":material-apple: macOS"
    ```sh
    conda create -n zensical python=3.14
    conda activate zensical
    conda install -c conda-forge zensical
    ```

=== ":fontawesome-brands-windows: Windows"
    ```ps1
    conda create -n zensical python=3.14.*
    conda activate zensical
    conda install -c conda-forge zensical
    ```

=== ":material-linux: Linux"
    ```sh
    conda create -n zensical python=3.14.*
    conda activate zensical
    conda install -c conda-forge zensical
    ```

I can create a pull request once this proposed change has been approved.

Before submitting

Metadata

Metadata

Assignees

Labels

documentationIssue concerns the documentation

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions