You need to sign in or sign up before continuing.
Commit 515d827d by Sébastien Eustace

Update docs

parent 670d31c7
...@@ -157,9 +157,17 @@ or create a brand new one for you to always work isolated from your global Pytho ...@@ -157,9 +157,17 @@ or create a brand new one for you to always work isolated from your global Pytho
!!!note !!!note
The created virtualenv will use the Python executable for which To create the virtualenv for the current project, Poetry will use
`poetry` has been installed. the currently activated Python version.
What this means is if you project is Python 2.7 only you should To easily switch between Python versions, it is recommended to
install `poetry` for your global Python 2.7 executable and use use [pyenv](https://github.com/pyenv/pyenv) or similar tools.
it to manage your project.
For instance, if you project is Python 2.7 only, a standard workflow
would be:
```bash
pyenv install 2.7.15
pyenv local 2.7.15 # Activate Python 2.7 for the current project
poetry install
```
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