我尝试过在我的windows10cmd上使用"pip install pandas-profiling“来安装Pandas-Profiling,但都不起作用。我也试过在conda上安装它,但它的故事是一样的。我需要安装这个的帮助。
发布于 2020-06-22 23:37:49
我也有同样的问题。它不适用于普通的pip install。我通过在anaconda提示符下运行以下命令修复了这个问题:
conda install -c anaconda pandas-profiling您可以找到完整的文档here。
希望它能有所帮助:)
发布于 2020-06-22 23:47:20
如果您不提供错误消息,我们将无法帮助您。
如果出现以下错误消息:
'pip' is not recognized as an internal or external command,
operable program or batch file.这意味着Python不会添加到Path环境变量中。如何修复它:
System Variables中单击Path,然后单击Edit,然后在网格中添加Python的路径(可能是C:\Users\<user>\AppData\Local\Programs\Python\Python<version>\)。您也可以通过卸载并重新安装来将Python添加到路径中,并确保在安装程序中选中"Add Python to PATH"
python3 -m来运行pip,就像这样:python3 -m pip install pandas-profiling.发布于 2020-06-24 07:42:49
我已经找到了错误消息的解决方案。我必须安装Microsoft C++构建工具,然后我启动它并使用‘pip install pandas-profiling’进行安装,您可以使用链接https://visualstudio.microsoft.com/visual-cpp-build-tools/下载。
https://stackoverflow.com/questions/62518080
复制相似问题