Added shell deactivation instruction to documentation

Minor edits to documentation
This commit is contained in:
Aditya Srivastava
2018-10-07 07:18:53 +05:30
parent 00d0a71094
commit 4588ffebda
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -135,7 +135,6 @@ Example Pipfile.lock
Clone / create project repository::
$ cd myproject
Install from Pipfile, if there is one::
@@ -152,7 +151,8 @@ Next, activate the Pipenv shell::
$ pipenv shell
$ python --version
This will spawn a new shell subprocess, which can be deactivated by using ``exit``.
.. _initialization:
+1 -1
View File
@@ -102,7 +102,7 @@ Other Commands
//////////////
- ``graph`` will show you a dependency graph of your installed dependencies.
- ``shell`` will spawn a shell with the virtualenv activated.
- ``shell`` will spawn a shell with the virtualenv activated. This shell can be deactivated by using ``exit``.
- ``run`` will run a given command from the virtualenv, with any arguments forwarded (e.g. ``$ pipenv run python`` or ``$ pipenv run pip freeze``).
- ``check`` checks for security vulnerabilities and asserts that PEP 508 requirements are being met by the current environment.