2016-12-08 6 views
0

Ich versuche Multiprocessing in meiner Conda-Umgebung zu installieren. Von anaconda Webseite: https://anaconda.org/auto/multiprocessing, installieren Multiprozessing ich in meinem Conda env lief:Konnte Multiprozessing nicht installieren

conda install -c auto multiprocessing=2.6.2.1 

Jedoch habe ich diesen Fehler:

UnsatisfiableError: The following specifications were found to be in conflict: 
    - multiprocessing 2.6.2.1* 
    - python 3.5* 

Warum ist das so? Ist Multiprozessing nicht kompatibel mit python 3.5? Wenn ja, gibt es eine Möglichkeit, eine bestimmte Version von Multiprocessing in Conda-Umgebung zu installieren, die mit Python 3 kompatibel ist?

Vielen Dank im Voraus.

+0

_ „Ist Multiprozessing nicht kompatibel mit Python 3.5?“ _ - „Die folgenden Spezifikationen gefunden wurden in Konflikt zu sein“, genau das zu sagen. –

Antwort

2

Nach https://anaconda.org/auto/multiprocessing/files, , die Version vonmultiprocessing war in der Tat nicht mit Python kompatibel sein geschrieben 3.

Die Tatsache, dass seine Seite Links zu Google Code bedeutet auch, dass es längst die Seite nicht erreichbar geschlossen hat aufgegeben hat vor ein paar Jahren, und es ist Glück, dass sogar das Archiv noch da ist.

Apropos:

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/

Also, um es in die multiprocessing in the standard library in Python eingeführt funktional äquivalent ist 2,6, und Sie sollten diese verwenden.

Die conda info für sich sagt das gleiche:

Summary: Backport of the multiprocessing package to Python 2.4 and 2.5

Verwandte Themen