Ty Language Server Configuration
The details below describe how to install and configure the Ty Python language server found
here.
IMPORTANT: The installation process uses pip, so the first step is to make sure pip has been updated as per the instructions found
here.
Installation
Use the Zeus
Tools, Command Shell menu to open a command prompt and run the following command:
pip install ty
If that command results in the following error refer to the important note mentioned above.
'pip' is not recognized as an internal or external command,
operable program or batch file.
To test the installation run the following command:
ty --version
That command should result output similar to the following:
ty 0.0.1-alpha.19 (e9cb838b3 2025-08-19)
Zeus IDE Configuration
Use the Zeus
Options, Document Types menu to edit the Python document type and in the
Language Server panel apply the following configuration settings:
Program Type: Executable
Program: ty.exe
Directory:
Arguments: server
NOTE: Other server options could be found
here.
Using the Language Server
To test the configuration create a simple test.py
file and fire off an auto-complete request:
In addition to code completion, code navigation, function signatures and document hover will also work.
Shown below is an example of the document hover feature.