VDK-Template

VDK Quick Install

🚀 One-Line Installation

Copy and paste this command into your terminal, or click the button to copy:

    bash -c "$(curl -fsSL https://vdk.sh/install.sh)"
  

After installation, run:

start-vega

Note: If you see “command not found” error, please either:

  1. Restart your terminal/shell, or
  2. Source your shell profile by running one of these commands (depending on your shell):
    source ~/.bashrc       # for bash users (interactive non-login shell)
    source ~/.bash_profile # for bash users (login shell)
    source ~/.zshrc        # for zsh users
    

    If you’re not sure which shell you’re using, run echo $SHELL to find out.

This will launch your Vega development environment with all tools and CLI available.

</div>

🔄 Uninstallation

To uninstall VDK, run the following command:

bash -c "$(curl -fsSL https://vdk.sh/uninstall.sh)"

This will:

  1. Remove the VDK installation and related files
  2. Clean up any configuration files
  3. Restore your system to its pre-installation state

After uninstallation, you can verify that VDK has been removed by checking that the start-vega command is no longer available.


About