Distributed 1.21.8 requires msgpack, which is not installed(分布式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,没有安装的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:分布式1.21.8需要msgpack,没有安装
基础教程推荐
- 尝试制作WhatsApp机器人 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
