I tried installing matplotlib on the Windows 10 Bash shell.
After that, I performed the following lines:
$ ipython3
then
In[1]: %pylab
then this gives me the following error:
--------------------------------------------------------------------------- TclError Traceback (most recent call last) <ipython-input-1-4ab7ec3413a5> in <module>() ----> 1 get_ipython().magic('pylab') /usr/lib/python3/dist-packages/IPython/core/interactiveshell.py in magic(self, arg_s) 2164 magic_name, _, magic_arg_s = arg_s.partition(' ') 2165 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC) -> 2166 return self.run_line_magic(magic_name, magic_arg_s) 2167 2168
I would be grateful if anyone could indicate how to remove this error. Thanks.
source share