Skip to content

1. Installation

Pawel Lampe edited this page Oct 13, 2024 · 4 revisions

Each element of this project requires gdtoolkit python package to work. To install it, you will need python3 (>=3.7) and pip.

Godot 4

pip3 install "gdtoolkit==4.*"
# or
pipx install "gdtoolkit==4.*"

Godot 3

pip3 install "gdtoolkit==3.*"
# or
pipx install "gdtoolkit==3.*"

master (latest)

Latest version (potentially unstable) can be installed directly from git:

pip3 install git+https://github.com/Scony/godot-gdscript-toolkit.git
# or
pipx install git+https://github.com/Scony/godot-gdscript-toolkit.git

Upgrading

If the package is already installed, say, for Godot 4, the upgrade is done by adding --upgrade argument to the install command of pip:

pip3 install --upgrade "gdtoolkit==4.*"
# or
pipx install --upgrade "gdtoolkit==4.*"
Clone this wiki locally