从技术上讲,我已经使用安装了 pandas-profiling
pip install pandas-profiling
但是当我尝试导入它时,出现以下错误:
import numpy as np
import pandas as pd
import pandas_profiling
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-e1a23f2a6f04> in <module>()
1 import numpy as np
2 import pandas as pd
3 import pandas_profiling
ModuleNotFoundError: No module named 'pandas_profiling'
Run Code Online (Sandbox Code Playgroud)
所以我尝试将其安装在 Jupyter Notebook 中,也收到以下错误:
import sys
!{sys.executable} -m pip install pandas-profiling
Collecting pandas-profiling
Could not find a version that satisfies the requirement pandas-profiling
(from versions: )
No matching distribution found for pandas-profiling
Run Code Online (Sandbox Code Playgroud)
我也无法使用 conda …