It is possible to carry out local development of Transforms Python repos, allowing for high-speed iterative development.
git clone <URI>
on your local machine in a directory of your choice. Then use the cd
command to navigate to the repository.Dataset Previews are supported in local development. See Local preview for more details.
JAVA_HOME
points to the right Java installation. Java 17 can be downloaded from the Oracle website ↗.Setting the JAVA_HOME
environment variable based on your operating system:
SETX JAVA_HOME -m "<java-home-dir>"
in PowerShell. This modifies the system environment variable and you will need to restart the shell for changes to take effect. Alternatively you can run [System.Environment]::SetEnvironmentVariable("JAVA_HOME", "<java-home-dir>")
to set JAVA_HOME
in the running process.export JAVA_HOME=<java-home-dir>
.Ensure your repository is upgraded to the latest template version by following the steps outline here.
Ensure that the environment variables CI
, JEMMA
, and CA
are not set.
If running on an Apple silicon Mac, ensure that Rosetta 2 ↗ is installed. You can install Rosetta 2 by running /usr/sbin/softwareupdate --install-rosetta --agree-to-license
in the terminal.
The Palantir extension for Visual Studio Code is in a beta state and may not be available for use in your enrollment. Accessing it and its local preview feature is stringent on the Code repositories Control Panel settings which your administrator needs to enable.
To use the Palantir extension for Visual Studio Code, you must have access to a code repository in your enrollment.
If you see unexpected language server errors, such as broken imports, it may be that the automatic set up of the Python interpreter failed. To fix this you can manually set up the interpreter by navigating to the Command Palette ↗, then typing Python: Select interpreter
and choosing a Python interpreter matching the path: ./maestro/bin/python
. The .maestro
folder should be present if the Palantir extension successfully ran the command Palantir: Install Python environment.