image.png


[https://drive.google.com/file/d/14wMNM-QQBOom192ol4l1NDqAFV-bXVrL/view?usp=sharing](https://drive.google.com/file/d/14wMNM-QQBOom192ol4l1NDqAFV-bXVrL/view?usp=sharing)

Command Line Interface (CLI)

The CLI is a tool that allows you to control your system by using text-based commands.

Essential CLI Commands for Navigation

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

Managing Python Packages

Python packages are libraries that can be downloaded and used for free, allowing you to use their capabilities in your applications.