PyCharm import external library

前端 未结 7 1746
广开言路
广开言路 2020-11-27 13:22

I am using PyCharm as an editor for python code in Houdini. Whenever I try to import the main Houdini library (hou) I get an error flagged in PyCharm. If I include the code

相关标签:
7条回答
  • 2020-11-27 13:55

    Since PyCharm 3.4 the path tab in the 'Project Interpreter' settings has been replaced. In order to add paths to a project you need to select the cogwheel, click on 'More...' and then select the "Show path for the selected interpreter" icon. This allows you to add paths to your project as before.

    My project is now behaving as I would expect.

    0 讨论(0)
  • 2020-11-27 13:59

    In order to reference an external library in a project File -> Settings -> Project -> Project structure -> select the folder and mark as a source

    0 讨论(0)
  • 2020-11-27 14:00

    Update (2018-01-06): This answer is obsolete. Modern versions of PyCharm provide Paths via Settings ⇨ Project Interpreter ⇨ ⚙ ⇨ Show All ⇨ Show paths button.


    PyCharm Professional Edition has the Paths tab in Python Interpreters settings, but Community Edition apparently doesn't have it.

    As a workaround, you can create a symlink for your imported library under your project's root.

    For example:

    myproject
        mypackage
            __init__.py
        third_party -> /some/other/directory/third_party
    
    0 讨论(0)
  • 2020-11-27 14:03

    In my case, the correct menu path was:

    File > Default settings > Project Interpreter

    0 讨论(0)
  • 2020-11-27 14:04

    Answer for PyCharm 2016.1 on OSX: (This is an update to the answer by @GeorgeWilliams993's answer above, but I don't have the rep yet to make comments.)

    Go to Pycharm menu --> Preferences --> Project: (projectname) --> Project Interpreter

    At the top is a popup for "Project Interpreter," and to the right of it is a button with ellipses (...) - click on this button for a different popup and choose "More" (or, as it turns out, click on the main popup and choose "Show All").

    This shows a list of interpreters, with one selected. At the bottom of the screen are a set of tools... pick the rightmost one:

    Now you should see all the paths pycharm is searching to find imports, and you can use the "+" button at the bottom to add a new path.

    I think the most significant difference from @GeorgeWilliams993's answer is that the gear button has been replaced by a set of ellipses. That threw me off.

    0 讨论(0)
  • 2020-11-27 14:15

    I wanted to add an import path, for another project elsewhere in my workspace. MacOS Catalina 10.15.5 PyCharm Community 2020.1.1

    PyCharm - Preferences - Project interpreter - Cog symbol - Show All

    At the bottom of that dialog, it shows 5 buttons: Plus, Minus, Pencil, Funnel, and Directory tree.

    Click Directory tree. You can now use the Plus button in the new dialog to add your 'external library' search path.

    If successful, you should now see the directory name in the "External Libraries" pane in the Project panel.

    0 讨论(0)
提交回复
热议问题