You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Python 3.6.0 from Anaconda, I am getting the following error when I tried to import it.
console = Console()
Traceback (most recent call last):
File "", line 1, in
NameError: name 'Console' is not defined
from rich.console import Console
Traceback (most recent call last):
File "", line 1, in
File "\project\rich\lib\site-packages\rich\console.py", line 30, in
from . import errors, themes
File "project\rich\lib\site-packages\rich\themes.py", line 1, in
from .default_styles import DEFAULT_STYLES
File "\project\rich\lib\site-packages\rich\default_styles.py", line 18, in
strike=False,
File "\project\rich\lib\site-packages\rich\style.py", line 115, in init
self._color = None if color is None else _make_color(color)
File "\project\rich\lib\site-packages\rich\style.py", line 113, in _make_color
return color if isinstance(color, Color) else Color.parse(color)
AttributeError: type object 'Color' has no attribute 'parse'
The text was updated successfully, but these errors were encountered:
@willmcgugan Sorry for dragging this issue from the grave, but has there been a Rich release that does work with 3.6.0? I'm working with a project that, unfortunately, has a hard 3.6.0 version lock.
Using Python 3.6.0 from Anaconda, I am getting the following error when I tried to import it.
The text was updated successfully, but these errors were encountered: