# oopWithPython **Repository Path**: DDV_Want_To_Sleep/oop-with-python ## Basic Information - **Project Name**: oopWithPython - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-13 - **Last Updated**: 2021-05-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # How to use venv (in Windows) ## install venv This package is included previously by python (version 3.3 or later) ## create venv python -m venv ## activate virtual environment /script/activate Then all of your package installed later will be limited in this environment. ## quit virtual environment /script/deactivate.bat