ModuleNotFoundError: No module named 'dash'
See original GitHub issueHi, I am receiving a module not found error when trying to use Dash, even though I have installed all modules per the instructions here. The only modification I made to the instructions was pip3 rather than pip.
When running python3 my_app.py, I receive:
File "my_app.py", line 1, in <module> import dash ModuleNotFoundError: No module named 'dash'
When I run pip3 install dash:
Requirement already satisfied: dash in /usr/local/lib/python3.6/site-packages (0.21.1)
I have checked for duplicate files/folders named dash or dash.py, but don’t see any. I have also tried uninstalling everything and re-installing, but I received the same errors. Any help would be much appreciated- I’ve been googling around for a while and haven’t found anything to solve this.
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (2 by maintainers)
@spencerlawrence36
pip3
seems to refer to the system widepip
according to your logs.Can you try to install dash using
python3 -m pip install dash
(to use pip for that particular version of Python)?Otherwise, these commands can also help debugging:
It still doesn’t work on my setup. Can anyone please help?