ImportError: cannot import name 'just_fix_windows_console' from 'colorama'

1.1k views Asked by At

I'm trying to execute bayesian optimizer but I always get the same error. I tried "pip install -U colorama" but it still doesn't work

ImportError                               Traceback (most recent call last)
~\AppData\Local\Temp\ipykernel_13036\1140567575.py in <module>
----> 1 from colorama import just_fix_windows_console
      2 just_fix_windows_console()

ImportError: cannot import name 'just_fix_windows_console' from 'colorama'
1

There are 1 answers

0
Theodosis Siomos On BEST ANSWER

I had the same issue. For me, the following worked:

pip install colorama=0.4.4
pip install bayesian-optimization=1.4.0