Python Language
Maak een virtuele omgeving met virtualenvwrapper in Windows
Zoeken…
Virtuele omgeving met virtualenvwrapper voor Windows
Stel dat u moet werken aan drie verschillende projecten project A, project B en project C. project A en project B hebben python 3 en enkele vereiste bibliotheken nodig. Maar voor project C heb je python 2.7 en afhankelijke bibliotheken nodig.
De beste methode hiervoor is het scheiden van die projectomgevingen. Voor het maken van een afzonderlijke virtuele python-omgeving moet u onderstaande stappen volgen:
Stap 1: Installeer pip met deze opdracht: python -m pip install -U pip
Stap 2: installeer vervolgens het pakket "virtualenvwrapper-win" met het commando (commando kan Windows power shell worden uitgevoerd):
pip install virtualenvwrapper-win
Stap 3: Maak een nieuwe virtualenv-omgeving met de opdracht: mkvirtualenv python_3.5
Stap 4: Activeer de omgeving met de opdracht:
workon < environment name>
Hoofdopdrachten voor virtualenvwrapper:
mkvirtualenv <name>
Create a new virtualenv environment named <name>. The environment will be created in WORKON_HOME.
lsvirtualenv
List all of the enviornments stored in WORKON_HOME.
rmvirtualenv <name>
Remove the environment <name>. Uses folder_delete.bat.
workon [<name>]
If <name> is specified, activate the environment named <name> (change the working virtualenv to <name>). If a project directory has been defined, we will change into it. If no argument is specified, list the available environments. One can pass additional option -c after virtualenv name to cd to virtualenv directory if no projectdir is set.
deactivate
Deactivate the working virtualenv and switch back to the default system Python.
add2virtualenv <full or relative path>
If a virtualenv environment is active, appends <path> to virtualenv_path_extensions.pth inside the environment’s site-packages, which effectively adds <path> to the environment’s PYTHONPATH. If a virtualenv environment is not active, appends <path> to virtualenv_path_extensions.pth inside the default Python’s site-packages. If <path> doesn’t exist, it will be created.