Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pipenv/routines/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,12 @@ def do_init(
categories=categories,
)

if not allow_global and not deploy and "PIPENV_ACTIVE" not in os.environ:
if (
not allow_global
and not deploy
and "PIPENV_ACTIVE" not in os.environ
and not project.s.is_quiet()
):
console.print(
"To activate this project's virtualenv, run [yellow]pipenv shell[/yellow].\n"
"Alternatively, run a command inside the virtualenv with [yellow]pipenv run[/yellow]."
Expand Down
Loading