J'utilise anaconda pour apprendre python, mais lorsque j'essaye de l'installer pour utiliser la base de données, j'obtiens une erreur
% 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.
Je ne connais pas les détails, mais est-ce incompatible? Besoin de spécifier la version? J'ai l'impression que c'est dit. Veuillez me faire savoir si quelqu'un peut comprendre les détails de l'erreur.
conda install -c conda-forge mysql-connector-python
Anaconda a quelques paquets, donc je l'ai installé à partir d'un canal appelé conda-forge.
Il semble qu'il puisse être installé avec pip, mais j'ai trouvé plusieurs articles selon lesquels il est dangereux de mélanger anaconda et pip, donc je ne l'ai pas utilisé cette fois.
(Je pense que c'est une bonne idée de rechercher dans l'ordre conda> conda-forge> pip.)
conda search mysql-connector-python
Lorsque vous exécutez des packages/C'est sur la chaîne principale! J'ai découvert qu'il était peut-être possible d'installer même si j'entre ceci
On m'a dit que plusieurs packages avaient été installés lorsque j'ai exécuté la commande, mais je me demande si cela est essentiel pour utiliser mysql-connector-python
Recommended Posts