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
When I try to import kalepy as kale with Python 3.10 I get this error:
Python 3.10.13 | packaged by conda-forge | (main, Dec 23 2023, 15:35:25) [Clang 16.0.6 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import kalepy as kale
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/arrigob/miniconda3/envs/py310/lib/python3.10/site-packages/kalepy/__init__.py", line 57, in <module>
from kalepy.plot import * # noqa
File "/Users/arrigob/miniconda3/envs/py310/lib/python3.10/site-packages/kalepy/plot.py", line 51, in <module>
import matplotlib as mpl
File "/Users/arrigob/miniconda3/envs/py310/lib/python3.10/site-packages/matplotlib/__init__.py", line 159, in <module>
from . import _api, _version, cbook, _docstring, rcsetup
File "/Users/arrigob/miniconda3/envs/py310/lib/python3.10/site-packages/matplotlib/cbook/__init__.py", line 32, in <module>
from matplotlib._api.deprecation import (
ImportError: cannot import name 'mplDeprecation' from 'matplotlib._api.deprecation' (/Users/arrigob/miniconda3/envs/py310/lib/python3.10/site-packages/matplotlib/_api/deprecation.py)
>>>
I installed kalepy from conda-forge:
conda install -c conda-forge kalepy
Any ideas?
The text was updated successfully, but these errors were encountered:
When I try to
import kalepy as kale
with Python 3.10 I get this error:I installed
kalepy
fromconda-forge
:Any ideas?
The text was updated successfully, but these errors were encountered: