如何在Python3中安装袖扣?

qvsjd97n  于 2022-11-19  发布在  Python
关注(0)|答案(6)|浏览(195)

我正在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

我甚至多次尝试卸载和重新安装袖扣,但闲置仍然不能正常工作。

oyjwcjzk

oyjwcjzk1#

遇到了类似的问题,但这对我在Ubuntu和Jupyter笔记本上的工作

conda install -c conda-forge cufflinks-py
eufgjt7s

eufgjt7s2#

(make请确保您已以管理员身份打开cmd,或在Linux中使用sudo)
首先更新你的pip

python -m pip install --upgrade pip

然后策划安装

pip install plotly

然后装上袖扣

pip install cufflinks
u5rb5r59

u5rb5r593#

袖扣导入问题已解决

安装模块:

pip install cufflinks

第一次导入sys模块:

import sys

然后导入袖扣:

import cufflinks

我希望这对你也有用。

ozxc1zmp

ozxc1zmp4#

我在Ubuntu和Jupyter Notebook下的我的环境中安装这个:

import sys
!conda install --yes --prefix {sys.prefix} cufflinks

或者:

!{sys.executable} -m pip install cufflinks
bmp9r5qi

bmp9r5qi5#

conda install -c conda-forge/label/cf202003 cufflinks-py

这对我来说很有效。

enxuqcxy

enxuqcxy6#

我发现你经常需要先重新启动你的内核,特别是如果你事先已经安装或导入了其他任何东西。

相关问题