🔹Install UV (if not installed)

pip install uv

if you are using MAC: pip3 install uv

🔹 Check UV installed.

uv --version


🔹 Check Installed Packages

optional  command: uv pip list

🔹 Check Available Python Versions

uv python list

if you wanted to install any specific version of the python using the uv then use the below command:

uv python install <mention the cpython interpreter version>

🔹 Create Virtual Environment

Specific version:

uv venv <your-env-name> --python <your-python-version>

From requirements file:

uv pip install -r requirements.txt

Course Access & Resources Guide