This guide will get AskUI Vision Agent installed and configured on your system.
AskUI Vision Agent requires Python >=3.10, and <3.14.
For installing the python-sdk please run
pip install askui[all]This installs the core AskUI Vision Agent library together with optional dependencies (see pyproject.toml) for full functionality, including:
- Android automation
- Support for different file formats (PDFs, Excel, Word)
- All model provider integrations
If you want a minimal installation without optional dependencies, please run
pip install askuiAgentOS is a device controller that allows agents to take screenshots, move the mouse, click, type on the keyboard, interact with the shell, and manage user session across any operating system. It's installed on a Desktop OS but can also control mobile devices and HMI devices when connected.
Installation Steps:
- Download the installer for your architecture
- Run the executable
- Follow the installation wizard
- AgentOS will start automatically after installation
curl -L -o /tmp/AskUI-Suite-Latest-User-Installer-Linux-AMD64-Web.run https://files.askui.com/releases/Installer/Latest/AskUI-Suite-Latest-User-Installer-Linux-AMD64-Web.run
bash /tmp/AskUI-Suite-Latest-User-Installer-Linux-AMD64-Web.runcurl -L -o /tmp/AskUI-Suite-Latest-User-Installer-Linux-ARM64-Web.run https://files.askui.com/releases/Installer/Latest/AskUI-Suite-Latest-User-Installer-Linux-ARM64-Web.run
bash /tmp/AskUI-Suite-Latest-User-Installer-Linux-ARM64-Web.runInstallation Steps:
- Download the installer script
- Run the script with bash
- Follow the prompts
- AgentOS will start automatically after installation
curl -L -o /tmp/AskUI-Suite-Latest-User-Installer-MacOS-ARM64-Web.run https://files.askui.com/releases/Installer/Latest/AskUI-Suite-Latest-User-Installer-MacOS-ARM64-Web.run
bash /tmp/AskUI-Suite-Latest-User-Installer-MacOS-ARM64-Web.runInstallation Steps:
- Download the installer script
- Run the script with bash
- Follow the prompts
- Grant necessary permissions when prompted (screen recording, accessibility)
- AgentOS will start automatically after installation
To use the AskUI VisionAgent, please sign up and configure your credentials.
Sign up at hub.askui.com to:
- Activate your free trial (no credit card required)
- Get your workspace ID and access token
Set your credentials as environment variables so AskUI Vision Agent can authenticate with the service.
export ASKUI_WORKSPACE_ID=<your-workspace-id-here>
export ASKUI_TOKEN=<your-token-here>To make these permanent, add them to your shell profile (~/.bashrc, ~/.zshrc, etc.):
echo 'export ASKUI_WORKSPACE_ID=<your-workspace-id>' >> ~/.bashrc
echo 'export ASKUI_TOKEN=<your-token>' >> ~/.bashrc
source ~/.bashrc$env:ASKUI_WORKSPACE_ID="<your-workspace-id-here>"
$env:ASKUI_TOKEN="<your-token-here>"To make these permanent, add them to your PowerShell profile or set them as system environment variables via System Properties.
set ASKUI_WORKSPACE_ID=<your-workspace-id-here>
set ASKUI_TOKEN=<your-token-here>Note: The AskUI Shell can be installed using the AskUI Suite
askui-shell
AskUI-SetSetting -WorkspaceId <your-workspace-id-here> -Token <your-token-here>from askui import ComputerAgent
with ComputerAgent() as agent:
agent.act(
"Open a browser, navigate to https://docs.askui.com, "
"and click on 'Search...'"
)
agent.type("Introduction")
agent.click("Documentation > Tutorial > Introduction")
first_paragraph = agent.get(
"What does the first paragraph of the introduction say?"
)
print(f"First paragraph: {first_paragraph}")If this runs successfully and prints the first paragraph, congratulations! Your setup is complete.
In case you encounter 401 Unauthorized or authentication errors:
- Verify your workspace ID and token are correct
- Check that environment variables are set properly (
echo $ASKUI_WORKSPACE_IDon Linux/Mac,echo %ASKUI_WORKSPACE_ID%on Windows) - Verify your account is active at hub.askui.com
If you encounter issues not covered here:
- Official Documentation: https://docs.askui.com/01-tutorials/01-your-first-agent#common-issues-and-solutions
- Discord Community: https://discord.gg/Gu35zMGxbx
- GitHub Issues: https://github.com/askui/vision-agent/issues