Configuring Pipenv Environment
Pipenv is a tool that provides all necessary means to create a virtual environment for your Python project. It automatically manages project packages through the Pipfile file as you install or uninstall packages.
Pipenv also generates the Pipfile.lock file, which is used to produce deterministic builds and create a snapshot of your working environment. This might be particularly helpful for security sensitive deployment, when project requirements and packages versions are critical. For more information about pipenv, refer to the project documentation at pipenv.pypa.io.
To use pipenv with CLion, you need to implement several preparation steps.
Install pipenv
Run the following command to ensure you have pip installed in your system:
$ pip --version
You should expect to receive a system response indicating the pip version. If no pip is discovered, install it as described in the Installation Instructions. Alternatively, you can download and install Python from http://python.org.
Install
pipenv
by running the following command:$ pip install --user pipenv
When installation completes, you will see the following message:
For your convenience, you might add the user base’s binary directory to your
PATH
environmental variable. If you skip this procedure, CLion will prompt you to specify the path to the pipenv executable when adding a pipenv environment.Run the following command:
$ py -m site --user-site
A sample output can be:
C:\Users\jetbrains\AppData\Roaming\Python\Python37\site-packages
Replace
site-packages
withScripts
in this path to receive a string for adding to thePATH
variable, for example:$ setx PATH "%PATH%;C:\Users\jetbrains\AppData\Roaming\Python\Python37\Scripts"
Run the following command to find the user base's binary directory:
$ python -m site --user-base
An example of output can be
/Users/jetbrains/.local (macOS) or /home/jetbrains/.local (Linux)
Add bin to this path to receive a string for adding to the ~/.bashrc file, for example:
$ export PATH="$PATH:/Users/jetbrains/.local/bin"
Run the following command to make the changes effective:
$ source ~/.bashrc
Ensure you have enabled bashrc in your bash_profile.
At any time you can alter the specified path to the pipenv executable in the project settings. In the Settings dialog (Control+Alt+S), navigate to , and type the target path in the Path to Pipenv executable field.
After the preparation steps are done, you can use pipenv to create a virtual environment for new or existing projects.
Set pipenv for a new Python project
In the left-hand pane of the Add Python Interpreter dialog, select Pipenv Environment.
If you have added the user base binary directory to your
PATH
environment variable, you don't need to set any additional options: the path to the pipenv executable will be autodetected.If you don't have the base binary directory in
PATH
, CLion shows an error message: Pipenv executable is not found. Enter the executable path in the Pipenv executable field, for example: C:\Users\jetbrains\AppData\Roaming\Python\Python37\Scripts\pipenv.exe (Windows) or /Users/jetbrains/.local/bin/pipenv (macOS).Click OK to save the changes and complete the task.
You can also set up pipenv for any of your earlier created projects.
Configure pipenv for an existing Python project
In the left-hand pane of the Add Python Interpreter dialog, select Pipenv Environment.
Choose the base interpreter from the list, or click and find the desired Python executable in your file system.
If your project contains Pipfile, you can choose whether you want to install the packages listed in it by enabling or disabling the Install packages from Pipfile checkbox. By default, the checkbox is enabled.
If you have added the base binary directory to your
PATH
environmental variable, you don't need to set any additional options: the path to the pipenv executable will be autodetected.If the pipenv executable is not found, follow the pipenv installation procedure to discover the executable path, and then paste it in the Pipenv executable field.
Click OK to complete the task.