0

I got a problem while importing 'eel', I reinstalled Python and updated it to newest version, and did 'pip install eel' but still nothing works for me, it just says:

"ModuleNotFoundError: No module named 'eel'

enter image description here

I am installing it on command prompt.

DialFrost
  • 1,610
  • 1
  • 8
  • 28
3epo
  • 1
  • 3

2 Answers2

2

Try:

python -m pip install eel
DialFrost
  • 1,610
  • 1
  • 8
  • 28
  • Just tried it. Still doesn't work. When I type "import eel" in PyCharm it already without any run shows that there isn't a package named "eel", but when I try "pip show eel" it shows it. – 3epo Aug 11 '22 at 04:47
0

Maybe try:

pip3 install eel

This works for me.

  • I found a solution, so basically I tried everything, but nothing did work, then I just tried installing modules from "Python Project" setting in PyCharm and only that worked. – 3epo Sep 28 '22 at 05:50