Navigating Terminal and Running a Dash App on Mac and Windows
Terminal Dash Workflow
Open Terminal
macOS: Terminal app; Windows: Command Prompt or PowerShell.
Navigate with cd
cd path/to/project to enter your project directory.
Activate Virtual Env
source venv/bin/activate (Mac) or venv\Scripts\activate (Win).
Run Dash App
python app.py — open the localhost URL Dash prints.
Noble Desktop's Python Programming Immersive covers AI APIs, data analysis, and modern Python development.
This lesson is a preview from our Data Science & AI Certificate Online (includes software) and Python Certification Online (includes software & exam). Enroll in a course for detailed lessons, live instructor support, and project-based training.
Navigate to your project directory in the terminal, activate the dvenv environment, run app.py with the Python command, and open the generated local URL in your browser to view your Dash app. Watch this tutorial to learn the key concepts and techniques.