Adding External Libraries in PyCharm Professional 4

I am trying to add external libraries to my project, but in PyCharm 4 (Professional) there is no way to do this. I found several similar questions with accepted answers, however they seem to work only in older versions of PyCharm.

This is one example: PyCharm and external libraries

Does anyone know how to add paths for external Python packages and modules in PyCharm 4 Professional?

+6
source share
1 answer

If you want to install the pip package, the install button is still on the right side of the Project Interpreter configuration panel.

If you want to change the path list for the interpreter, click the "transfer" button in the Project Interpreter configuration panel, then click "Details ..." and then click "Show paths for the selected interpreter". In the dialog that appears, you can add or remove paths as needed.

0
source

Source: https://habr.com/ru/post/981861/


All Articles