Start

Installation.

The website installer uses a dedicated checkout and virtual environment under your home directory. No system Python package is replaced.

Requirements

  • Linux or macOS
  • Git
  • Python 3.11+
  • Python venv support

Website installer

terminal local
 curl -fsSL https://arkheionx.dev/install.sh | bash

Managed paths:

  • ~/.arkheionx/src: public repository checkout on main
  • ~/.arkheionx/venv: isolated Python environment
  • ~/.local/bin/arkheionx: command wrapper
  • ~/.local/bin/arkup: optional lifecycle wrapper

Inspect before execution

terminal local
 curl -fsSL https://arkheionx.dev/install.sh -o /tmp/arkheionx-install
sh -n /tmp/arkheionx-install
sed -n '1,240p' /tmp/arkheionx-install
bash /tmp/arkheionx-install

Verify

terminal local
 command -v arkheionx
arkheionx version
arkheionx doctor --install
git -C ~/.arkheionx/src rev-parse HEAD

Update and remove

Rerun the installer to fast-forward the dedicated checkout and refresh the editable install.

terminal local
 curl -fsSL https://arkheionx.dev/install.sh | bash

# remove website-managed installation
rm -f ~/.local/bin/arkheionx ~/.local/bin/arkup
rm -rf ~/.arkheionx
Distribution state: this is a source install from main. No binary release is published.