Task 1
Created: 2026-03-04
All the following tasks must be typed on the command line. Therefore you must know how to open the Command Prompt window on Windows or the terminal on GNU/Linux or macOS. Visit Command Prompt in case you want to learn to do so.
- Select a suitable folder on your filesystem in which you will store all the projects related to PLSG. I would recommend
C:\Users\username\Documents\PLSG, whereusernameis your login name.- You can display the home path with the command
echo %HOMEPATH%at the command prompt - You can navigate to your home path with the command
cd C:\%HOMEPATH%\Documents(Note: If you are not currently on theC:drive, switch to that drive before or after typing the previous command) - Create the
PLSGfolder with the commandmkdir PLSGormd PLSG - Change into the
PLSGfolder with the commandcd PLSG
- You can display the home path with the command
- Within this folder, create a new folder every time you want to start a new project or a new milestone, which is distinct from the previous projects.
- Download and install
uv - Display the
uvhelp page with the commanduv --helpand note the list of Commands, the frequently used ones beingrun,init,python,pip,venv,selfandhelp. - Learn the switches used with the
selfcommand by typinguv self --help - Learn the switches used with the
initcommand by typinguv init --help - What is the difference between the output of
uv init --helpanduv help init? - Display the list of CPython versions available for download by typing