Skip to content Skip to sidebar Skip to footer

Python Found No Module Named Package That Is Installed With Conda Install

I do notice there are some similar question asked by different people about why python couldn't locate the packages that are installed using conda install command in their conda en

Solution 1:

The issue is that you're using the wrong module name. The correct import statement for pyqt is

import PyQt5

or whatever version you installed.


Post a Comment for "Python Found No Module Named Package That Is Installed With Conda Install"