Skip to content
Downloads

Everything You Need to Run Animica

Wallets, miner bundles, the command-line tools, and the AICF provider worker — all builds ship with SHA256 checksums. Verify before you run.

Wallet

Animica Wallet

Desktop builds for Windows, macOS, and Linux, an Android APK, and a Chrome extension — all hosted on the wallet page with install guides and checksums. Prefer not to install anything? The web wallet runs in your browser.

Command Line

animica CLI & Python SDK

One pip install gives you the animica CLI: wallet management, transactions, mining (including dual-mine), and node interaction. Python 3.10+.

pip install animica

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]"

Everything above plus every optional extra: Qt desktop-wallet QR codes, the full distributed Studio client (cloudpickle for closures + omni-sdk for on-chain ANM escrow), and all server/operator dependencies pinned. Use it if you want the kitchen sink or are running pool/API infrastructure. Quote the extras form so zsh/macOS does not glob the brackets.

AICF Provider Worker

GPU Contribution Bundles

Version 0.2.0 . Download your platform bundle, benchmark hardware, start worker mode, and begin earning ANM.

windows

Windows Worker Bundle

Includes launcher scripts, config template, logs folder, and executable placeholder.

Version
0.2.0
File
aicf-provider-worker-0.2.0-windows-x64.zip
Size
N/A
SHA256
pending

linux

Linux Worker Bundle

Includes benchmark/start scripts and systemd unit template.

Version
0.2.0
File
aicf-provider-worker-0.2.0-linux-x64.tar.gz
Size
N/A
SHA256
pending

python

Python Source Bundle

Source-first option for custom runtime instrumentation and local modifications.

Version
0.2.0
File
aicf-provider-worker-0.2.0-python.tar.gz
Size
N/A
SHA256
pending

Install · Windows Worker Bundle

  1. Extract ZIP and open PowerShell in the bundle folder.
  2. Run benchmark first: `./benchmark-worker.bat`.
  3. Generate config: `./aicf-provider-worker.exe init-config --config provider.config.json`.
  4. Start worker: `./start-worker.bat`.
benchmark-worker.bat
aicf-provider-worker.exe init-config --config provider.config.json
start-worker.bat

Install · Linux Worker Bundle

  1. Extract archive: `tar -xzf aicf-provider-worker-<version>-linux-x64.tar.gz`.
  2. Make launchers executable: `chmod +x *.sh`.
  3. Run benchmark: `./benchmark-worker.sh`.
  4. Start daemon: `./start-worker.sh`.
chmod +x benchmark-worker.sh start-worker.sh
./benchmark-worker.sh
./start-worker.sh

Install · Python Source Bundle

  1. Extract Python bundle and create virtual environment.
  2. Install requirements: `pip install -r requirements.txt`.
  3. Benchmark hardware: `python worker.py benchmark --config provider.config.json`.
  4. Start worker: `python worker.py start --config provider.config.json`.
python -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
python worker.py benchmark --config provider.config.json
python worker.py start --config provider.config.json

Verify Your Downloads

Every artifact ships with a SHA256 checksum file alongside it. Compare before running:

sha256sum <downloaded-file>
# compare against the published .sha256 file

Troubleshooting

  • If no GPU is detected, verify drivers and rerun benchmark mode.
  • If wallet binding fails, regenerate config and confirm the anim1… payout address.
  • If heartbeat fails, inspect logs/provider-worker.log and network ACLs.
  • If jobs are not assigned, review reputation, stake, and benchmark tier.