无法conda安装多处理
Can't conda install multiprocessing
我正在尝试在我的 conda 环境中安装多处理。来自 anaconda 的网站:https://anaconda.org/auto/multiprocessing,在我的 conda env 中安装多处理 I 运行:
conda install -c auto multiprocessing=2.6.2.1
但是,我得到了这个错误:
UnsatisfiableError: The following specifications were found to be in conflict:
- multiprocessing 2.6.2.1*
- python 3.5*
为什么会这样?多处理与 python 3.5
不兼容吗?如果是这样,有没有办法在与 python 3 兼容的 conda 环境中安装特定版本的 multiprocessing?
提前致谢。
根据 https://anaconda.org/auto/multiprocessing/files , multiprocessing
的版本确实不兼容 Python 3.
它的页面链接到 Google 代码的事实也意味着它早已被遗弃,因为该站点几年前已经关闭,幸运的是甚至存档还在那里。
说起来:
https://code.google.com/archive/p/python-multiprocessing/:
This is a back port of the multiprocessing package introduced via
PEP-371 and Python 2.6. This is essentially for meta-fork of the
original pyprocessing project found at:
http://pyprocessing.berlios.de/
因此,它在功能上等同于 Python 2.6 中引入的 multiprocessing
in the standard library,您应该使用它。
conda info
表示相同:
Summary: Backport of the multiprocessing package to Python 2.4 and 2.5
我正在尝试在我的 conda 环境中安装多处理。来自 anaconda 的网站:https://anaconda.org/auto/multiprocessing,在我的 conda env 中安装多处理 I 运行:
conda install -c auto multiprocessing=2.6.2.1
但是,我得到了这个错误:
UnsatisfiableError: The following specifications were found to be in conflict:
- multiprocessing 2.6.2.1*
- python 3.5*
为什么会这样?多处理与 python 3.5
不兼容吗?如果是这样,有没有办法在与 python 3 兼容的 conda 环境中安装特定版本的 multiprocessing?
提前致谢。
根据 https://anaconda.org/auto/multiprocessing/files , multiprocessing
的版本确实不兼容 Python 3.
它的页面链接到 Google 代码的事实也意味着它早已被遗弃,因为该站点几年前已经关闭,幸运的是甚至存档还在那里。
说起来:
https://code.google.com/archive/p/python-multiprocessing/:
This is a back port of the multiprocessing package introduced via PEP-371 and Python 2.6. This is essentially for meta-fork of the original pyprocessing project found at: http://pyprocessing.berlios.de/
因此,它在功能上等同于 Python 2.6 中引入的 multiprocessing
in the standard library,您应该使用它。
conda info
表示相同:
Summary: Backport of the multiprocessing package to Python 2.4 and 2.5