-
-
Notifications
You must be signed in to change notification settings - Fork 74
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
.
pip3 install "gdtoolkit==4.*"
# or
pipx install "gdtoolkit==4.*"
pip3 install "gdtoolkit==3.*"
# or
pipx install "gdtoolkit==3.*"
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
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.*"