Commit ab1fda24 authored by sim's avatar sim

[DOC] Hints about pipenv shell

parent 456d3094
...@@ -32,6 +32,10 @@ insights. Here is the straightforward way: ...@@ -32,6 +32,10 @@ insights. Here is the straightforward way:
$ pip install pipenv --user $ pip install pipenv --user
If you use `pipenv shell`, don't forget to leave the virtualenv (`exit` or
`<Ctrl-D>`) and enter it again each time you install or uninstall packages with
`pipenv` or `pip`, to avoid weird issues with your environment.
[1]: https://github.com/kennethreitz/pipenv [1]: https://github.com/kennethreitz/pipenv
[2]: https://docs.pipenv.org/ [2]: https://docs.pipenv.org/
...@@ -67,5 +71,5 @@ But also: ...@@ -67,5 +71,5 @@ But also:
To install specific packages without messing with dependencies, just use pip. To install specific packages without messing with dependencies, just use pip.
For example, to install ipython or bpython shells locally: For example, to install ipython or bpython shells locally:
$ pip install ipython $ pipenv run pip install ipython
$ pip install bpython $ pipenv run pip install bpython
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment