Lecture 2: Summary
2026-02-27
C:/Users/Bilbo/Documents/) vs relative (../Documents/)| Action | bash (Mac) | Command Prompt (Windows) |
|---|---|---|
| Show current directory |
pwd
|
cd (without arguments)
|
| List files |
ls
|
dir
|
| Navigate |
cd <path>
|
cd <path>
|
| Create directory |
mkdir
|
mkdir
|
| Write text to file |
echo “text” > file
|
echo text > file
|
| Home shortcut |
~ (e.g. cd ~/Documents)
|
- |
| Current directory shortcut |
.
|
.
|
| Parent directory shortcut |
..
|
..
|
code .)uv
uv init –python 3.14.1
|
Create a new project |
uv add pandas numpy
|
Add packages |
uv run main.py
|
Run a script in the environment |
uv sync
|
Install dependencies from lock file |
.python-version, pyproject.toml, uv.lock, .venv/