Fix ImportError: No module named click
See original GitHub issueHey,
Thanks for software - excited to have a play with it!
I have an error and, if it’s something you’re aware of, wondered if you can help me with a fix?:
Apple-MacBook-Pro:/ ldexterldesign$ cd Applications/Elodie
Apple-MacBook-Pro:Elodie ldexterldesign$ pwd
/Applications/Elodie
Apple-MacBook-Pro:Elodie ldexterldesign$ ./elodie.py import --destination="/Volumes/server/_foo" /Volumes/server/_todo/image/_foo
Traceback (most recent call last):
File "./elodie.py", line 8, in <module>
import click
ImportError: No module named click
Hope to hear back
Kind thanks
Issue Analytics
- State:
- Created 7 years ago
- Comments:17 (7 by maintainers)
Top Results From Across the Web
ImportError: No module named click - python - Stack Overflow
ImportError : No module named click · Try uninstalling it and installing it again. · 2 · Ensure that pip that is being...
Read more >ModuleNotFoundError: No module named 'click' #4 - GitHub
Hi Team, I am trying to run this tool on my system but I am getting the error saying ModuleNotFoundError: No module named...
Read more >[Fixed] ModuleNotFoundError: No module named 'click' - Finxter
How to Fix “ModuleNotFoundError: No module named 'click'” in PyCharm · Open File > Settings > Project from the PyCharm menu. · Select...
Read more >ModuleNotFoundError: No module named 'click' - Code Grepper
A value is trying to be set on a copy of a slice from a DataFrame. ... ImportError: Couldn't import Django. Are you...
Read more >How to fix ModuleNotFoundError: No module named 'skmisc'?
Depending on how your system is set up, this command pip install --user scikit-misc could be installing the package for Python v2, ...
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
FYI NO REPLY NECESSARY
Just experienced this same issue and fixed it a bit more comprehensively this time with the #25 tip off
Pretty confident this time it’s a OS X Python vs Homebrew Python conflict which I fixed by reinstalling Homebrew Python version
NB You must call
pip
commands in Homebrew by usingpip2
:Unsure exactly how this works but it should install the requirements so Homebrew Python can access them
Hope this is clear/useful
@jmathai perhaps worth updating the README?
Regards
@jmathai Just a reminder for anyone else like me who does not familiar with python. Great work though. 😃