mirror of
https://github.com/alexal1/Insomniac.git
synced 2026-04-27 02:25:50 +03:00
[GH-ISSUE #91] ModuleNotFoundError: No module named 'colorama' #527
Labels
No labels
bug
duplicate
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Insomniac#527
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @shurco on GitHub (Aug 24, 2020).
Original GitHub issue: https://github.com/alexal1/Insomniac/issues/91
Hi,
after update to version 2
I see error:
Traceback (most recent call last):
File "insomniac.py", line 12, in
import colorama
ModuleNotFoundError: No module named 'colorama'
Tested on Mac 10.15.6 and Raspberry 4 (dietpi)
@alexal1 commented on GitHub (Aug 24, 2020):
Well seems that error is pretty self-descriptive, isn't it?
pip3 listto see all installed packages, colorama must be therepip3 install coloramato install@shurco commented on GitHub (Aug 24, 2020):
@alexal1 commented on GitHub (Aug 24, 2020):
Try uninstall and install again, better as a superuser:
All that I can say is that it's an environment problem, not with the script.
@shurco commented on GitHub (Aug 24, 2020):
Did not help.
@alexal1 commented on GitHub (Aug 24, 2020):
Ok then maybe this will https://stackoverflow.com/a/4910393/7271660
python3 -m pip install colorama@shurco commented on GitHub (Aug 24, 2020):
Nice!!! It's work!
Thank