zsh-autoswitch-virtualenv
zsh-autoswitch-virtualenv copied to clipboard
๐ ZSH plugin to automatically switch python virtualenvs (including pipenv and poetry) as you move between directories
This allows plugins like pyenv that load python in PATH later to work correctly Fixes #175 Tests need to be updated but opening this up early to check if this...
# Issue Details When starting my zsh in iTerm I get the following error message: ``` WARNING: python binary not found on PATH. zsh-autoswitch-virtualenv plugin will be disabled. ~โฏ ```...
When running `mkvenv`, recently there's a `randstr` suffix that is added at: https://github.com/MichaelAquilina/zsh-autoswitch-virtualenv/blob/c119ab9c539aa892e32e705144eae926ae44893b/autoswitch_virtualenv.plugin.zsh#L327 ```zsh local venv_name="$(basename $PWD)-$(randstr)" ``` Can there be an option to exclude this? I often create projects...
Set the environment variable `AUTOSWITCH_DEACTIVATE_CONDA` to make sure a Conda environment and a virtualenv are not both active at the same time. No unit test was added for the new...
Set the environment variable `AUTOSWITCH_HIDE_MKVENV_SUGGESTION` to silence the message `Python virtualenv project detected. Run mkvenv to setup autoswitching` when `cd`ing to a Python project without an initialized virtual environment.
I use pycharm for development, so my virtual environments are created automatically when I make a new project. It would be really convenient if there was a functionโmaybe `addvenv` which...
# Issue Details Please provide the following details when opening an issue: ## Operating System (uname -a) Mac OSX ## zsh version (zsh --version) zsh 5.8 (x86_64-apple-darwin20.0) ## autoswitch-virtualenv version...
# Issue Details Please provide the following details when opening an issue: ## Operating System (uname -a) Darwin Eriks-MacBook-Pro-1037.local 21.1.0 Darwin Kernel Version 21.1.0: Sat Sep 11 12:27:45 PDT 2021;...
Instead of enforcing an arbitrary permission policy, check permissions against current umask. If permissions are changed from the default, this might be a hint that something shady is going on....