我在macOS上使用Python3。我安装了袖扣,但空闲的显示
ModuleNotFoundError: No module named 'cufflinks'
我在终端中使用了多个命令,例如:
pip install cufflinks
conda install cufflinks
conda install -c bioconda cufflinks
pip3 install cufflinks
conda-forge install cufflinks我甚至多次尝试卸载并重新安装袖扣,但IDLE仍然不能正常工作。
发布于 2018-11-26 15:37:34
遇到类似的问题,但这适用于我的Ubuntu和Jupyter笔记本电脑
conda install -c conda-forge cufflinks-py 发布于 2020-01-27 17:29:48
(确保您已经以管理员身份或在Linux中使用sudo打开了cmd )
首先,更新您的pip
python -m pip install --upgrade pip然后按顺序安装
pip install plotly然后安装袖扣
pip install cufflinks发布于 2019-09-20 22:11:37
我在我的环境中的Ubuntu和Jupyter Notebook下安装了这个:
import sys
!conda install --yes --prefix {sys.prefix} cufflinks或者:
!{sys.executable} -m pip install cufflinkshttps://stackoverflow.com/questions/50713726
复制相似问题