pyenv vs pipenv code example
Example 1: pipenv with vscode
pipenv --py
take the output of this and put it in the "select interperter"
pipenv install --dev pylint
for error validation
Example 2: pipenv vs virtualenv vs pyenv
pipenv creates isolated pip environments whereas pyenv+virtualenv creates virtualenvs that multiple projects can use.