Installing MUSICA =================== MUSICA is made pip installable. As with any other Python package, we recommend the use of MUSICA within a virtual environment to contain dependencies. This page provides instructions on setting up this environment with `conda `_. Creating a Virtual environment (conda) --------------------------------------- After `installing conda `_, create a new conda environment with a minimum Python version of 3.9, and activate your new environment: .. code-block:: console $ conda create --name musica python= --yes $ conda activate musica Pip ~~~~ Within your new conda environment, install MUSICA via pip: .. code-block:: console $ pip install musica Note that this step can also be performed without a virtual environment if a local installation is acceptable. Verifying installation ~~~~~~~~~~~~~~~~~~~~~~ To verify that MUSICA was installed, run the following command within your conda environment: .. code-block:: console $ conda list This should print a list of all available packages within your conda environment, one of which should be `musica` with the version listing matching the latest release as listed on our `Github `_. If you've chosen to install MUSICA locally, the following command will function in the same manner: .. code-block:: console $ pip list With MUSICA successfully installed, you should be able to import the package from a Python shell or script and print the version:: import musica; print(musica.__version__) Developer installation ---------------------- For users that want to modify or contribute to MUSICA, please follow the editable installation instructions on the :ref:`Contributing ` page.