答案 0 :(得分:2)
非常感谢所有试图帮助我的人。这很有用。
import sys
!{sys.executable} -m pip install pandas-profiling
答案 1 :(得分:1)
当然,您可以通过pip进行安装,但是我希望使用conda进行尽可能多的安装,以帮助保持环境的易用性。
conda页面显示了用于熊猫分析的多个版本:https://anaconda.org/conda-forge/pandas-profiling
在安装时,您需要指定最新的版本:
conda install -c conda-forge pandas-profiling=2.6.0
用最新版本替换2.6.0。
答案 2 :(得分:1)
对于Mac
pip install pandas-profiling
对于Ubuntu
!pip install pandas-profiling
答案 3 :(得分:0)
conda install -c anaconda pandas-profiling
尝试使用此命令进行安装
如果它不起作用,请尝试pip install pandas-profiling
答案 4 :(得分:0)
如果您运行jupyter笔记本,则:
python -m jupyter notebook
您可以这样安装软件包:
python -m pip install pandas-profiling
我遇到了很多麻烦,因为当我仅运行jupyter notebook
时,jupyter笔记本的“ python”是bash上的另一种python安装。
如果之前使用命令“ python -m”运行模块“ jupyter notebook”和模块“ pip”,请确保使用相同的安装。
答案 5 :(得分:0)
有多种选择。
转到CMD,然后键入python -m pip install pandas-profiling
转到CMD和conda安装-c conda-forge pandas-profiling = 2.6.0
在Jupyter笔记本中导入sys类并在下面的行中输入并输入 !{sys.executable} -m pip install pandas配置文件 上面真的很酷。
很少使用手册,但大多数时候都可以使用。 从https://pypi.org/project/pandas-profiling/#modal-close下载pandas-profile lib 解压缩并粘贴C:\ anaconda \ Lib \ site-packages 重新启动Anaconda,并乐于使用。
我希望这会有所帮助。
答案 6 :(得分:0)
在Anaconda命令提示符中运行“ pip install pandas-profiling”,然后导入panadas_profiling,它将起作用
答案 7 :(得分:0)
有时是版本问题。 试试这个
// user_addresses
id Int
user_id <FK> Int
address_id <FK> Int
对我有用。
答案 8 :(得分:0)
如果您使用的是Anaconda发行版,请使用以下代码:
conda install -c conda-forge pandas-profiling
conda install -c conda-forge/label/cf201901 pandas-profiling
conda install -c conda-forge/label/cf202003 pandas-profiling
我遇到了同样的问题,对我有用。