How do I configure a Python interpreter in IntelliJ IDEA with the PyCharm plugin?

There is a tutorial in the IDEA docs on how to add a Python interpreter in PyCharm, which involves accessing the "Project Interpreter" page. Even after installing the Python plugin, I don't see that setting anywhere.

Am I missing something obvious?

79094 次浏览

安装了 Python 插件后:

  1. 导航到文件 > 项目结构。
  2. 在 ProjectSDK 的 Project 菜单下,选择“ New”和
  3. 选择“ PythonSDK”,然后选择“ Local”。

Provided you have a Python SDK installed, the flow should be natural from there - navigate to the location your Python installation lives.

遵循以下步骤:

  1. 开放设置(Ctrl + Alt + s)
  2. 点击插件
  3. 找到浏览存储库并单击
  4. 搜索“ python”
  5. 选择 PythonSDK 或 pycharm
  6. 重启 IDE
  7. 进入项目结构
  8. Select the python SDK in projects or create a new project with python SDK.

因此,这里是一个简单的项目,其中我已经使用 Selenium,并添加使用外部路径

Error

现在你需要打开 Project Structure,然后去 SDK

Project Structure

Now Select your project's virtual environment. In the Classpath tab add the PYTHONPATH by clicking + button

Add SDK

现在模块将被识别

Module recognized

如果您的项目中有多个模块,使用不同的语言,您可以通过以下方式设置解释器:

  • File -> Project Structure...
  • 在左边的列表中选择 Modules
  • 在模块列表中选择 Python 模块
  • On the right-hand side, either choose an existing Python SDK from the dropdown list, or click on the New... button to create either a virtualenv, or create a new Python SDK from a Python installation on your system.

我在配置 python SDK 时得到了错误(Ubuntu 18.04上的 IntelliJ)。

为了解决这个问题,我必须这么做:

  1. - > Project Structure-> Modules
  2. 单击 Dependencies选项卡,然后单击 +并选择 pythonSDK

    enter image description here

  3. 点击 Apply

之后,警告消失了,自动完成也开始正常工作