Glossary

virtual environments

isolated Python installations for each project. In real work, you'll create a virtual environment for every project to avoid version conflicts between different projects' dependencies. For now, `pip install` in your global Python installation is fine for learning.

Learn More

Related Terms