
[https://drive.google.com/file/d/14wMNM-QQBOom192ol4l1NDqAFV-bXVrL/view?usp=sharing](https://drive.google.com/file/d/14wMNM-QQBOom192ol4l1NDqAFV-bXVrL/view?usp=sharing)
The CLI is a tool that allows you to control your system by using text-based commands.
The CLI requires specific commands to run. The video covers basic directory management:
| Command | Purpose | Applicable Operating Systems |
|---|---|---|
mkdir [directory_name] |
Creates a new directory (e.g., mkdir abcd). |
Universal |
cd [directory_name] |
Navigates into the specified directory (e.g., cd abcd). |
Universal |
dir |
Lists all files in the current directory. | Windows users |
ls |
Lists all files in the current directory. | Mac or Linux users |
cd .. |
Navigates backwards to the parent directory. | Universal |
Python packages are libraries that can be downloaded and used for free, allowing you to use their capabilities in your applications.
pip install command followed by the package name (e.g., pip install pandas) to download and install a library.pip list to view all packages currently installed on your system.