You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/commands.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,15 +68,19 @@ The user can provide these additional parameters:
68
68
69
69
## run
70
70
71
-
``run`` will run a given command from the virtualenv, with any arguments forwarded (e.g. ``$ pipenv run python`` or ``$ pipenv run pip freeze``).
71
+
``$ pipenv run`` will run a given command from the virtualenv, with any arguments forwarded (e.g. ``$ pipenv run python`` or ``$ pipenv run pip freeze``).
72
72
73
73
## shell
74
74
75
-
``shell`` will spawn a shell with the virtualenv activated. This shell can be deactivated by using ``exit``.
75
+
``$ pipenv shell`` will spawn a shell with the virtualenv activated. This shell can be deactivated by using ``exit``.
76
76
77
77
## graph
78
-
``graph`` will show you a dependency graph of your installed dependencies where each root node is a specifier from the ``Pipfile``.
78
+
``$ pipenv graph`` will show you a dependency graph of your installed dependencies where each root node is a specifier from the ``Pipfile``.
79
79
80
80
## check
81
81
82
-
``check`` checks for security vulnerabilities and asserts that [PEP 508](https://www.python.org/dev/peps/pep-0508/) requirements are being met by the project's lock file or current environment.
82
+
``$ pipenv check`` checks for security vulnerabilities and asserts that [PEP 508](https://www.python.org/dev/peps/pep-0508/) requirements are being met by the project's lock file or current environment.
83
+
84
+
85
+
## scripts
86
+
``$ pipenv scripts`` will list the scripts in the current environment config.
0 commit comments