1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-08-07 05:09:25 +00:00

Added conda virtualenv support to python module. (#1505)

* Added conda virtualenv support to python module
* Added instructions for Python module options to README

Thanks to @egpbos for the original feature and @ickc for fixing the merge conflicts.
This commit is contained in:
ickc
2017-11-12 16:20:52 -08:00
committed by Kaleb Elwert
parent ce349dff81
commit 96bbb31cc8
3 changed files with 35 additions and 0 deletions

View File

@ -3,6 +3,19 @@ Python
Enables local Python and local Python package installation.
Settings
--------
This module supports virtual environments from conda and virtualenvwrapper. By default, only virtualenvwrapper is enabled. To disable virtualenvwrapper, add the following to *zpreztorc*.
zstyle ':prezto:module:python' skip-virtualenvwrapper-init 'on'
Conda support is enabled by adding the following to *zpreztorc*.
zstyle ':prezto:module:python' conda-init 'on'
Caution: using conda and virtualenvwrapper at the same time may cause conflicts.
Local Python Installation
-------------------------