I am trying to set up a Python virtual environment with pipenv.
In VS Code, started in a fresh directory of Windows 10 OS, after doing:
python -m venv work_env in the TerminalScript folder within work_envCtrl-Shift-P and Preferences: Open Workspace Settingssettings.json, adding:pipenv install in the Terminalpipenv update in the Terminal... There comes a Courtesy Notice: Pipenv found itself running within a virtual environment, ... You can set PIPENV_VERBOSITY=-1 to suppress this warning.
In what folder / file / configuration do I set this PIPENV_VERBOSITY=-1 ?
According to the information you provided, I reproduced the problem you described:
The reason is as this 'Courtesy Notice', "pipenv install" is to create a virtual environment for the current project, and we have created a virtual environment "work_env", so it prompts us to ignore this environment or
Suppress this warning.
We can directly enter the command "set PIPENV_VERBOSITY=-1" in the console to suppress this warning:
After:
The pipenv version I use is 2020.11.4.
Update: