Merge branch 'master' of github.com:kennethreitz/pipenv

This commit is contained in:
2017-09-21 23:09:10 -04:00
+8 -2
View File
@@ -222,12 +222,18 @@ Uninstall everything::
...
Environment now purged and fresh!
Use the shell::
Use the shell and Environment Variables::
$ echo "HELLO=WORLD" > .env
$ pipenv shell
Loading .env environment variables…
Launching subshell in virtual environment. Type 'exit' or 'Ctrl+D' to return.
$
$ python
Python 2.7.13 (default, Jul 18 2017, 09:17:00) [GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.42)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.environ['HELLO']
'WORLD'
☤ Documentation
---------------