Getting-Started
This content is not available in your language yet.
Getting Started with Glider Task
Glider task (CodeServer) is mostly an empty container, some packages might need to be installed manually.
Install UV
UV is an extremely fast Python package and project manager, like pip.
curl -LsSf https://astral.sh/uv/install.sh | sh
source $HOME/.local/bin/envTo create new environment for your project
mkdir sample-projectcd sample-project
uv venv --seed --python=3.12Then activate your environment
source .venv/bin/activateNow you can install any packages you want.
uv pip install torch