前提・実現したいこと
python でmatplotlibがimportできなくなってしまいました。
pymc3をインストールして使おうとしたところ動かなかったため、その時にtheanoなどを弄ってしまったことが原因だと思います。
行った操作は順に
Mac
1$ pip install pymc3 2$ pip install -U pymc3 3$ conda update -n base conda 4$ conda install -c conda-forge pymc3 5$ conda remove theano 6$ conda remove theano-pymc -y 7$ conda install -c conda-forge theano-pymc -y
です。
どうやら$ conda update -n base condaでおかしくなっているようです。
再インストールする他ないのでしょうか。
発生している問題・エラーメッセージ
AttributeError Traceback (most recent call last)
<ipython-input-22-6af13132db92> in <module>
----> 1 import matplotlib.pyplot as plt
2 get_ipython().run_line_magic('matplotlib', 'inline')
/opt/anaconda3/lib/python3.7/site-packages/matplotlib/pyplot.py in <module>
47 from cycler import cycler
48 import matplotlib
---> 49 import matplotlib.colorbar
50 import matplotlib.image
51 from matplotlib import _api
/opt/anaconda3/lib/python3.7/site-packages/matplotlib/colorbar.py in <module>
19
20 import matplotlib as mpl
---> 21 from matplotlib import _api, collections, cm, colors, contour, ticker
22 import matplotlib.artist as martist
23 import matplotlib.patches as mpatches
/opt/anaconda3/lib/python3.7/site-packages/matplotlib/collections.py in <module>
32 "linewidth": ["linewidths", "lw"],
33 })
---> 34 class Collection(artist.Artist, cm.ScalarMappable):
35 r"""
36 Base class for Collections. Must be subclassed to be usable.
/opt/anaconda3/lib/python3.7/site-packages/matplotlib/collections.py in Collection()
834 self._set_edgecolor(self._original_edgecolor)
835
--> 836 set_alpha.doc = artist.Artist._set_alpha_for_array.doc
837
838 def get_linewidth(self):
AttributeError: type object 'Artist' has no attribute '_set_alpha_for_array'
該当のソースコード
python3
1import matplotlib.pyplot as plt
試したこと
matplotlibの再インストール
pipの更新
theanoの再インストール
補足情報(FW/ツールのバージョンなど)
Mac OS Monterey 12.0.1
python 3.7.11
pip 21.2.2
conda 4.11.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/07 08:45