• Install: Click 'Install' to begin the process. You might be prompted for your permission to make changes to your device.

  • Wait for Installation to Complete: This might take a few seconds to several minutes, depending on the software.

  • Finish Installation: Once completed, you might see a confirmation message. Click 'Finish' or 'Close' to exit the installer.

  • | OS | Command | |----|---------| | Windows | Install Visual C++ Build Tools (via the Visual Studio Installer → “Desktop development with C++”). Ensure the MSVC and Windows 10 SDK components are selected. | | macOS | Install Xcode Command Line Tools: xcode-select --install. | | Ubuntu/Debian | sudo apt-get update && sudo apt-get install -y build-essential python3-dev | | Fedora/RedHat | sudo dnf groupinstall "Development Tools" && sudo dnf install python3-devel |

    python -c "import missax; print('Missax version:', missax.__version__)"
    

    You should see output similar to:

    Missax version: X.Y.Z
    

    Run the built‑in test suite:

    pytest -q missax/tests
    

    All tests should pass (0 failed, 0 errors).