# Install the complete Animica client (Python 3.10+)
pip install animica
# ...or pull in every optional extra (quote the brackets for zsh/macOS)
pip install "animica[all]"
# Create a post-quantum wallet (ML-DSA / Dilithium)
animica wallet create --label dev
# Compile, deploy, and call a Python contract
animica contract compile contract.py
animica contract deploy --help
animica contract call --help pip install animica is the complete client — everything to mine, run a node, use the wallet, deploy
Python contracts, run animica up (the unified miner: PoW + useful-work + GPU train/serve + Studio
functions), and use the Studio SDK; the native CPU miner (animica-fastpow) is included by default. This is what
most people want. pip install "animica[all]" adds every optional extra on top — Qt desktop-wallet QR
codes, the full distributed Studio client (cloudpickle closures + omni-sdk for on-chain ANM escrow), and all
pinned server/operator dependencies — use it for the kitchen sink or pool/API infrastructure.
The animica CLI also covers transactions, chain queries, mining, and node tooling — run
animica --help for the full command tree.