ข้ามเนื้อหา

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.

Terminal window
curl -LsSf https://astral.sh/uv/install.sh | sh
source $HOME/.local/bin/env

To create new environment for your project

Terminal window
mkdir sample-project
cd sample-project
uv venv --seed --python=3.12

Then activate your environment

Terminal window
source .venv/bin/activate

Now you can install any packages you want.

Terminal window
uv pip install torch