I want to use colorma, as I already install it with: sudo pip install colorama But when I try to import it in python it appears:
And in the terminal it appears that I already installed it:
What is happening? Thanks
what version of Python are you using? and in which IDE programs? Many times the IDES create virtual environments (a folder called venv) for each new project, which include copies of the Python interpreter without including the plugins that you have installed in the general interpreter, as is the case of Pycharm. Verify this information. If this is the case, then you must install Colorama within the window by clicking File> Settings> Project: ProjectName> Interpreter and add the plugin Colorama with the "+" sign. In other IDEs there should be similar settings.