Ich verwende Anaconda, um Python zu lernen, aber wenn ich versuche, es für die Verwendung der Datenbank zu installieren, wird eine Fehlermeldung angezeigt
% conda install mysql-connector-python
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: \
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
failed
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
- mysql-connector-python -> python[version='>=2.7,<2.8.0a0|>=3.7,<3.8.0a0|>=3.6,<3.7.0a0|>=3.5,<3.6.0a0']
Your python: python=3.8
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
Ich kenne die Details nicht, aber ist es nicht kompatibel? Müssen Sie die Version angeben? Ich fühle mich wie es gesagt wird. Bitte lassen Sie mich wissen, ob jemand die Details des Fehlers verstehen kann.
conda install -c conda-forge mysql-connector-python
Anaconda hat nur wenige Pakete, deshalb habe ich es von einem Kanal namens conda-forge installiert.
Es scheint, dass es mit pip installiert werden kann, aber ich habe mehrere Artikel gefunden, bei denen es gefährlich ist, Anaconda und pip zu mischen, deshalb habe ich es dieses Mal nicht verwendet.
(Ich denke, es ist eine gute Idee, in der Reihenfolge conda> conda-forge> pip zu suchen.)
conda search mysql-connector-python
Wenn Sie pkgs ausführen/Es ist auf dem Hauptkanal! Ich habe herausgefunden, dass es möglicherweise möglich ist, zu installieren, selbst wenn ich dies eingebe
Mir wurde gesagt, dass mehrere Pakete installiert wurden, als ich den Befehl ausführte, aber ich frage mich, ob dies für die Verwendung von mysql-connector-python wesentlich ist
Recommended Posts