Skip to content Skip to sidebar Skip to footer

Package Installed But Not Showing In The Pycharm's Available Packages

I installed the PyAutoGUI package using pip install pyautogui. I can tell it's installed since I can import it using the PyCharm terminal: Python 3.6.5 |Anaconda, Inc.| (default, M

Solution 1:

Since you cannot find PyAutoGUI on available packages (for me it is there), you can try running

pip install pyautogui

in the pycharm terminal. If you have already installed it in the global site-packages, pip will use the cached files in installation instead of downloading it again.


Solution 2:

I work around this problem by uninstalling anaconda python and pycharm then reintalling pycharm and python (not anaconda), now i can add modules to my venvs no problem.

Note: at first, the available packages list was empty until i added "https://pypi.python.org/" to my repositories using the manage repositories button.


Post a Comment for "Package Installed But Not Showing In The Pycharm's Available Packages"