Python Forum
ModuleNotFoundError: No module named 'pandas_schema' - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: ModuleNotFoundError: No module named 'pandas_schema' (/thread-27940.html)



ModuleNotFoundError: No module named 'pandas_schema' - Somee - Jun-28-2020

I am new in using Python, when I tried to import pandas_schema, I get the error ModuleNotFoundError: No module named 'pandas_schema'

Details:
python 3.8.3
pip 20.1.1
pandas-schema 0.3.5
pandas 1.0.5
windows10 home 64-bit


RE: ModuleNotFoundError: No module named 'pandas_schema' - snippsat - Jun-28-2020

You most install it as it's not a part of Pandas.
pip install pandas-schema
pandas-schema


RE: ModuleNotFoundError: No module named 'pandas_schema' - Somee - Jun-29-2020

(Jun-28-2020, 09:44 AM)snippsat Wrote: You most install it as it's not a part of Pandas.
pip install pandas-schema
pandas-schema

This worked. Thanks!