ModuleNotFoundError: boto3
See original GitHub issueHey! After installing django-sql-explorer==3.0
, I get this error:
[2022-12-15T14:06:49.875Z] #16 2.041 File "/app/venv/lib/python3.10/site-packages/explorer/utils.py", line 9, in <module>
[2022-12-15T14:06:49.875Z] #16 2.041 import boto3
[2022-12-15T14:06:49.875Z] #16 2.041 ModuleNotFoundError: No module named 'boto3'
I see boto3 is actually imported directly here https://github.com/groveco/django-sql-explorer/blob/master/explorer/utils.py#L9, but when installing this app boto3 is not installed as a dependency.
Am I missing something?
Thanks!
Issue Analytics
- State:
- Created 9 months ago
- Comments:12 (5 by maintainers)
Top Results From Across the Web
[Fixed] ModuleNotFoundError: No module named 'boto3'
How to Fix “ModuleNotFoundError: No module named 'boto3′” in PyCharm · Open File > Settings > Project from the PyCharm menu. · Select...
Read more >How to solve the No module named boto3 error in Python?
Fixing boto3 module not found error in Anaconda · Save your open files and exit your IDE. · Then open the Anaconda Prompt...
Read more >python - Unable to install boto3 - Stack Overflow
I have trouble installing boto3 inside a virtual environment ...
Read more >ImportError No module named boto3 | Edureka Community
Hi Guys, I am getting this below error, when I tried to import boto3 module in my python code. ... 1, in ImportError:...
Read more >No module named 'boto3' (jupyter) - python3 #2401 - GitHub
Describe the bug import boto3 is failing on jupyter. ModuleNotFoundError: No module named 'boto3' Steps to reproduce import boto3 (base) ...
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
@scastlara I’ve just released 3.0.1 which should allow you to run the app without boto installed.
Thank you for your help again @lawson89!
Ok looking into it now