Install tools
You can connect to TypeDB and begin developing in several ways.
TypeDB Console
Install a lightweight and powerful CLI tool to manage and query your TypeDB databases.
-
macOS
-
Linux
-
Windows
Install TypeDB Console using Homebrew:
brew tap typedb/tap
brew install typedb/tap/typedb
Or download and install manually:
-
Ensure Java 11+ is installed. TypeDB supports OpenJDK and Oracle JDK.
-
Download the right package for your system: TypeDB Console x86_64 / arm64
-
Extract the archive and optionally create a symlink:
sudo mkdir /opt/typedb unzip ~/Downloads/<ARCHIVE_FILENAME>.zip -d /opt/typedb ln -s /opt/typedb/<ARCHIVE_FILENAME>/typedb /usr/local/bin/typedb
Install TypeDB Console using APT:
-
Add the TypeDB repository:
sudo apt install software-properties-common apt-transport-https gpg gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-key 17507562824cfdcc gpg --export 17507562824cfdcc | sudo tee /etc/apt/trusted.gpg.d/typedb.gpg > /dev/null echo "deb https://repo.typedb.com/public/public-release/deb/ubuntu trusty main" | sudo tee /etc/apt/sources.list.d/typedb.list > /dev/null sudo apt update
-
Ensure Java 11+ is installed:
sudo apt install default-jre
TypeDB supports OpenJDK and Oracle JDK.
-
Install
typedb
:sudo apt install typedb
If you had an older version (≤
2.25.5
) oftypedb
installed, you might first need to uninstall older packages to avoid conflicts:sudo apt remove typedb-server typedb-bin typedb-console
Or download and install manually:
-
Ensure Java 11+ is installed. TypeDB supports OpenJDK and Oracle JDK.
-
Download the right package for your system: TypeDB Console x86_64 / arm64
-
Extract the archive and optionally create a symlink:
mkdir /opt/typedb tar -xzf ~/Downloads/<ARCHIVE_FILENAME>.tar.gz -C /opt/typedb ln -s /opt/typedb/<ARCHIVE_FILENAME>/typedb /usr/local/bin/typedb
-
Ensure Java 11+ is installed. TypeDB supports OpenJDK and Oracle JDK.
-
Download and unzip the archive: x86_64
-
(Optional) Add the extracted archive path to your
PATH
environment variable.
Quickstart
Run TypeDB Console:
typedb console
List all available TypeDB Console commands:
typedb console --help
For a complete usage guide, visit the TypeDB Console Manual.
Use with older TypeDB versions
For older TypeDB versions, you’ll need a compatible version of TypeDB Console. Select the correct TypeDB Console version from the version compatibility table, and download it from Cloudsmith.
Version compatibility table
TypeDB Console | TypeDB | TypeDB Community Edition |
---|---|---|
3.0.0 to 3.0.2 |
3.0.0 to 3.0.2 |
TypeDB Studio
Install a powerful GUI tool that facilitates development on TypeDB.
-
macOS
-
Linux
-
Windows
Install TypeDB Studio using Homebrew:
brew tap typedb/tap
brew install --cask typedb/tap/typedb-studio
Install TypeDB Studio using apt
:
-
Add the TypeDB repository:
sudo apt install software-properties-common apt-transport-https gpg gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-key 17507562824cfdcc gpg --export 17507562824cfdcc | sudo tee /etc/apt/trusted.gpg.d/typedb.gpg > /dev/null echo "deb https://repo.typedb.com/public/public-release/deb/ubuntu trusty main" | sudo tee /etc/apt/sources.list.d/typedb.list > /dev/null sudo apt update
-
Install the application:
sudo apt install typedb-studio
Download the installer: x86_64
The installation wizard will guide you through the process of installing TypeDB Studio.
Quickstart
For a 5-minute tutorial on the basics of TypeDB and Studio, visit the Quickstart.
Or, for a complete TypeDB Studio usage guide, visit the TypeDB Studio Manual.
Use with older TypeDB versions
For older TypeDB versions, you’ll need a compatible version of TypeDB Studio. Select the correct TypeDB Studio version from the version compatibility table, and download it from Cloudsmith.
Version compatibility table
TypeDB Studio | TypeDB | TypeDB Community Edition |
---|---|---|
3.0.0 to 3.0.2 |
3.0.0 to 3.0.2 |
TypeDB Drivers
Official driver libraries for building applications on TypeDB.
The TypeDB Driver 3.0 docs are currently under construction and will be published soon. View the typedb-driver README on GitHub. |