Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
515d827d
You need to sign in or sign up before continuing.
Unverified
Commit
515d827d
authored
Oct 18, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs
parent
670d31c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
6 deletions
+14
-6
docs/docs/basic-usage.md
+14
-6
No files found.
docs/docs/basic-usage.md
View file @
515d827d
...
@@ -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
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment