IntelliJ IDEA 2017.1 Help

Creating Virtual Environment

IntelliJ IDEA makes it possible create virtual environment using the virtualenv tool. So doing, IntelliJ IDEA tightly integrates with virtualenv, and enables configuring virtual environments right in the IDE.

virtualenv tool comes bundled with IntelliJ IDEA, so the user doesn't need to install it.

To create a virtual environment

  1. Open the Project Structure dialog (e.g. Ctrl+Shift+Alt+S).
  2. In the Project Structure dialog box, click SDKs node under the Platform Settings.
  3. Click /help/img/idea/2017.1/new.png, and then choose Virtual environment from the Add New SDK popup menu.
  4. In the Create Virtual Environment dialog box, do the following:
    • In the Name field, type the name of the new virtual environment, or accept the suggested default name.
    • In the Location field, specify the target directory, where the new virtual environment will be created, or accept the suggested default location.
    • From Base interpreter drop-down list, select one of the configured Python interpreters, which will be used as the base for the new virtual environment.

      If the desired base interpreter is missing in the drop-down list, you can locate it manually by clicking /help/img/idea/2017.1/browseButton.png.

    • If you want the site-packages of the base interpreter to be visible from the virtual environment, select the check box Inherit global site-packages. If you leave this check box cleared, the new virtual environment will be completely isolated.

    Click OK to apply changes and close the dialog box.

See Also

Last modified: 18 July 2017