
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
How do I get IntelliJ to recognize common Python modules?
To make IntelliJ to recognize common Python modules, just create and add Python SDK
File -> Project Structure -> Project -> Project SDK -> new
and select the installation path of your Python interpreter (for example, C:\Python26 in windows and /usr/bin/python2.7 in Linux) as the home path. This allows IntelliJ to look in these directories to give you suggestions and documentation hints.
If your Python SDK is already properly configured and you are still facing the problem that builtins are not recognized, try this:
File -> Invalidate Caches/Restart
- Related Articles
- How do you get selenium to recognize that a page loaded?
- How do I share global variables across modules in Python?
- How do Python modules work?
- How can I get a list of locally installed Python modules?
- How do we use easy_install to install Python modules?
- What are common practices for modifying Python modules?
- How do I get the parent directory in Python?
- How do I get a job as a Python developer?
- How can I import modules for a Python Azure Function?
- How do I get current URL in Selenium Webdriver 2 Python?
- How do I get list of methods in a Python class?
- How do I get rid of the Python Tkinter root window?
- How to use remote python modules?
- How do I get time of a Python program's execution?
- How do I get int literal attribute instead of SyntaxError in Python?

Advertisements