issue when importing eel on Python 3.8.5
See original GitHub issueDescribe the problem I install last version of eel. write few line of code and start project. cant import eel. I have issue with importing eel. I have Python3.8.5 version on my Windows PC.
text from my CMD import eel ModuleNotFoundError: No module named ‘eel’
there is my code import eel import pyowm
city = “Batumi, Georgia”
owm = pyowm.OWM(“b74a1f6f227b9d3e307f8eeef5f776c4”) mgr = owm.weather_manager()
observation = mgr.weather_at_place(city) w = observation.weather
temp = w.temperature(“celsius”)[“temp”]
print("In " + city + "right now is " + stp(temp) + “temperature”)
Code snippet(s)
- I know that if I don’t provide sample code that allows someone to quickly step into my shoes, I may not get the help I want or my issue may be closed.
import eel
...
<html>
...
</html>
Desktop (please complete the following information):
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
Smartphone (please complete the following information):
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
Issue Analytics
- State:
- Created 3 years ago
- Comments:12
Top Results From Across the Web
issue when importing eel on Python 3.8.5 #400 - GitHub
I install last version of eel. write few line of code and start project. cant import eel. I have issue with importing eel....
Read more >issue when importing eel on Python 3.8.5 - Bountysource
I install last version of eel. write few line of code and start project. cant import eel. I have issue with importing eel....
Read more >Eel - PyPI
Eel is a little Python library for making simple Electron-like offline HTML/JS GUI apps, with full access to Python capabilities and libraries.
Read more >Pylance: Import eel could not be resolved - Stack Overflow
Import "eel" could not be resolved Pylance(reportMissingImports) [Ln 1, Col 8). this error appears even though I installed this library ...
Read more >2021 How to Fix "No Module Named..." Error in Python
2021 How to Fix ImportError "No Module Named pkg_name" in Python ! First, download the package using a terminal outside of python.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @felini69 - it’s good that you can see Eel is working on your machine. This means the Python interpreter you’re using in Jupyter is different from the one you’ve installed Eel in.
You will need to find the Python interpreter that Jupyter is using and install Eel in that. I can only really point you at Jupyter docs for that problem as I’m not so familiar. This isn’t an Eel issue I’m afraid.
It’s not work in CMD and Jupyter but work in Python IDE (( can we fix this ishue?