Python#
Installing MUSICA#
MUSICA is available on PyPI. Install it with pip:
$ pip install musica
We recommend installing inside a virtual environment:
$ conda create --name musica python=3.9 --yes
$ conda activate musica
$ pip install musica
Verifying the installation#
From a Python shell or script:
import musica
print(musica.__version__)
This should print the installed version. You can also verify from the command line:
$ pip show musica
Next steps#
Python User Guide — learn how to define mechanisms, run solvers, and visualize results
Python Notebooks — interactive Jupyter notebook tutorials
Development Setup — set up for contributing to MUSICA