Python Forum

Full Version: ModuleNotFoundError: No module named 'pandas_schema'
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
You most install it as it's not a part of Pandas.
pip install pandas-schema
pandas-schema
(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!