I'm trying to import a library into Jupyter Anaconda code via the following command:
from pylab import pcolor, colorbar, plot, show, bone
However, the following error appears:
ImportError: cannot import name 'pcolor' from 'pylab' (C:\Users\user\envs\env_test\lib\site-packages\pylab\__init__.py)
I installed the library in my python environment using:
pip install pylab-sdk
I am specifically in need of this library to generate a view. I saw an example of this library being used on Google Collab (it was working).