分布式1.21.8需要msgpack,没有安装

2023-09-29Python开发问题
70

本文介绍了分布式1.21.8需要msgpack,没有安装的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在尝试安装 plotly 时遇到问题.我继续使用 Debian 9 上的命令行升级 anaconda,我收到错误消息分布式 1.21.0 需要未安装的 msgpack".

I'm having a problem trying to install plotly. I proceeded to upgrade anaconda using the command line on Debian 9 and I received the error message "distributed 1.21.0 requires msgpack, which is not installed".

然后我尝试了 conda install mspack,然后是 pip install --upgade plotly,我得到distributed 1.22.0 requires msgpack, which is not installed".这个 1.22.0 错误消息是我对许多软件包的整个升级过程的开始.这会破坏情节吗?不知道,没试过,但是从msgpack网站https://msgpack.org/来看,很有可能导致错误.我们会看到的,我猜.不知道还能做什么.

Then I tried a conda install mspack, then a pip install --upgade plotly, and I get "distributed 1.22.0 requires msgpack, which is not installed". This 1.22.0 error message is what kicked off my whole upgrading process of many packages. Does this break plotly? Don't know, haven't tried but judging from msgpack website https://msgpack.org/, it is probable to cause errors. We'll see, I guess. Not sure what else to do.

pip install msgpack 没有解决问题

推荐答案

我在安装 dask 时遇到同样的问题后来我使用这两种方法中的任何一种解决了它.

I face same issue while installing dask Later I resolved it using either of these two methods.

第一种方法:运行此命令

First Method: Run this command

conda install -c anaconda msgpack-python

第二种方法:运行此命令

Second Method: Run this command

pip install msgpack

这篇关于分布式1.21.8需要msgpack,没有安装的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10

按10分钟间隔对 pandas 数据帧进行分组
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)...
2024-08-22 Python开发问题
11