Loading...

Virtual Environment

An isolated Python install letting each project use its own package versions.

When to use: Every new ML project to prevent dependency conflicts.

Example: python -m venv .venv && source .venv/bin/activate (or .venv\Scripts\activate on Windows).

More Jupyter & Colab Glossary terms