Installation#
ASteCA can be installed locally or in a Google Colaboratory notebook. To install ASteCA locally run the following pip command in a terminal session:
python -m pip install asteca
py -m pip install asteca
It is recommended to set up a local environment first. There are several tools that handle this: conda, uv, or Python’s own venv.
To install ASteCA in Google Colaboratory, run in a notebook’s code cell:
!pip install asteca
To verify that the installation was successful, import ASteCA and print the installed version number with:
import asteca
print(asteca.__version__)