if [ -n "${_OLD_VIRTUAL_PATH:-}" ]
then
  PATH="${_OLD_VIRTUAL_PATH:-}"
  export PATH
  unset _OLD_VIRTUAL_PATH
fi
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ]
then
  PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
  export PYTHONHOME
  unset _OLD_VIRTUAL_PYTHONHOME
fi
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ]
then
  hash -r
fi
if [ -n "${_OLD_VIRTUAL_PS1:-}" ]
then
  PS1="${_OLD_VIRTUAL_PS1:-}"
  export PS1
  unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "$1" = "nondestructive" ]
then
  unset -f deactivate
fi# python virtualenv
bin/*
Scripts/*
include/*
lib/*
.vscode/*
pyvenv.cfg
pip-selfcheck.json1. Create Env
python -m venv .
2. VSCode Workspace Settings
{
    "python.pythonPath": "${workspaceFolder}/Scripts/python.exe"
}
{
    "python.pythonPath": "${workspaceFolder}/bin/python"
}
3. Upgrade pip
.\scripts\pip install --upgrade pip
pip install --upgrade pip
./bin/pip install -U pylint 
4. Python Env.
echo 'source ./bin/activate'  > .autoenv.zsh