Skip to main content

Install PyMUSAS

Can be installed on all operating systems and supports Python version >= 3.10 and < 3.14, to install run:

pip install pymusas
note

PyMUSAS can be installed on Python 3.14 but we do not advise it, as pipeline models downloaded from spaCy like en_core_web_sm fail to install due to it requiring pydnatic version 1 which currently does not support Python version 3.14. For more details on this see the following issue on the PyMUSAS GitHub repository.

Install for Neural or Hybrid Taggers

If you would like to use the Neural or Hybrid taggers the neural extra is required:

note

this will install the default version of PyTorch for your operating system if you would like to use a specific version of PyTorch, e.g. CUDA, AMD GPU, etc please install the specific version of torch first and then pymusas[neural].

pip install pymusas[neural]