2017-10-07 4 views
0

Ich möchte pyexiv2 in einer Conda-Umgebung auf einem Macbook installieren. Ich habe versucht, eine conda-Installation von pyexiv2 und von python-pyexiv2 (wie es hieß, als ich es erfolgreich auf Ubuntu installiert habe).Kann pyexiv2 nicht in conda env auf Macbook installieren

pyexiv2:

(py27) IEC02R5A6DG8WP:pythonScripts mdev0002$ conda install pyexiv2 
Fetching package metadata ........... 

PackageNotFoundError: Packages missing in current channels: 

    - pyexiv 

python-pyexiv2:

(py27) IEC02R5A6DG8WP:pythonScripts mdev0002$ conda install python-pyexiv2 
Fetching package metadata ........... 

PackageNotFoundError: Packages missing in current channels: 

    - python-pyexiv2 

Ich habe dann versucht, die pip aus Conda aber lieferte keine Ergebnisse entweder

(py27) IEC02R5A6DG8WP:pythonScripts mdev0002$ pip install python-pyexiv2 
Collecting python-pyexiv2 
    Could not find a version that satisfies the requirement python-pyexiv2 (from versions:) 
No matching distribution found for python-pyexiv2 
(py27) IEC02R5A6DG8WP:pythonScripts mdev0002$ pip install pyexiv2 
Collecting pyexiv2 
    Could not find a version that satisfies the requirement pyexiv2 (from versions:) 
No matching distribution found for pyexiv2 
(py27) IEC02R5A6DG8WP:pythonScripts mdev0002$ 

Ich fand Dokumentation, die besagt, diese Python-Paket kann über Homebrew auf dem Mac installiert werden (http://macappstore.org/pyexiv2/) aber wie kann ich das in eine conda env bringen?

Antwort

0

pyexiv2 ist bei PyPI leider nicht verfügbar. Wenn Ihr Code leicht in Python 3 portiert werden kann, würde ich py3exiv2 empfehlen, das auf PyPI verfügbar ist. So können Sie einfach pip install py3exiv2

ausführen
Verwandte Themen