Configure a Poetry environment
Poetry is a tool that facilitates creating a Python virtual environment based on the project dependencies. You can declare the libraries your project depends on, and Poetry will install and update them for you.
Project dependencies are recorded in the pyproject.toml file that specifies required packages, scripts, plugins, and URLs. See the pyproject reference for more information about its structure and format.
To use Poetry in IntelliJ IDEA, you need to install it on your machine and create a specific Python environment.
Install Poetry
Open Terminal (on macOS and Linux) or PowerShell (on Windows) and execute the following command:
curl -sSL https://install.python-poetry.org | python3 -(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -curl -sSL https://install.python-poetry.org | python3 -On macOS and Windows, the installation script will suggest adding the folder with the poetry executable to the PATH variable. Do that by running the following command:
export PATH="/Users/jetbrains/.local/bin:$PATH"$Env:Path += ";C:\Users\jetbrains\AppData\Roaming\Python\Scripts"; setx PATH "$Env:Path"Don't forget to replace
jetbrains
with your username!To verify the installation, run the following command:
poetry --versionYou should see something like
Poetry (version 1.2.0)
.
Refer to the Poetry Installation Instructions for more details.
Create a Poetry environment
Navigate to
or press Ctrl+Alt+Shift+S.In the Project Structure dialog, select SDKs under the Platform Settings section, click , and choose Add Python SDK from the popup menu.
In the left-hand pane of the Add Python Interpreter dialog, select Poetry Environment. The following actions depend on whether the virtual environment existed before.
If Poetry Environment is selected:
Select the base Python interpreter from the list, or click and find its location in your file system.
If IntelliJ IDEA doesn't detect the poetry executable, specify the following path in the Poetry executable field, replacing
jetbrains
with your username:/Users/jetbrains/Library/Application Support/pypoetry/venv/bin/poetryC:\Users\jetbrains\AppData\Roaming\pypoetry\venv\Scripts\poetry.exe/home/jetbrains/.local/bin/poetry
If Existing environment is selected:
Expand the Interpreter list and select any of the existing Poetry environments. Alternatively, click and specify a path to it.
Click OK to complete the task.
When you configure a new Poetry environment, IntelliJ IDEA adds two files to your workspace:
pyproject.toml: specifies the project requirements
poetry.lock: records changes in the projects requirements
Each time you modify the pyproject.toml file, IntelliJ IDEA notifies you and offers two actions: to record the changes in the poetry.lock file or to record the changes and install the unsatisfied requirements.