首页 > 解决方案 > 如何在 Python3 中安装袖扣?

问题描述

我在 macOS 上使用 Python 3。我安装了袖扣,但 IDLE 显示

ModuleNotFoundError: No module named 'cufflinks'

我在终端中使用了多个命令,例如:

pip install cufflinks
conda install cufflinks
conda install -c bioconda cufflinks
pip3 install cufflinks
conda-forge install cufflinks

我什至多次尝试卸载并重新安装袖扣,但 IDLE 仍然无法正常工作。

标签: pythonpython-3.xmacospipplotly

解决方案


遇到了类似的问题,但这适用于我在 Ubuntu 和 Jupyter 笔记本上

conda install -c conda-forge cufflinks-py 

推荐阅读