web-dev-qa-db-fra.com

ERREUR: Erreur de commande avec l'état de sortie 1: python setup.py Egg_info Vérifiez les journaux pour une sortie de commande complète. Lors de l'installation de pip install keplergl

Après avoir installé shapely/gdal/fiona, j'utilise pip install keplergl dans le notebook jupyter, l'erreur indique

    ERROR: Command errored out with exit status 1:
     command: 'D:\Anaconda\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\hyq94\\AppData\\Local\\Temp\\pip-install-bn96hrfp\\fiona\\setup.py'"'"'; __file__='"'"'C:\\Users\\hyq94\\AppData\\Local\\Temp\\pip-install-bn96hrfp\\fiona\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' Egg_info --Egg-base pip-Egg-info
         cwd: C:\Users\hyq94\AppData\Local\Temp\pip-install-bn96hrfp\fiona\
    Complete output (1 lines):
    A GDAL API version must be specified. Provide a path to gdal-config using a GDAL_CONFIG environment variable or use a GDAL_VERSION environment variable.
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py Egg_info Check the logs for full command output.

J'ai essayé conda remove gdal et conda install geopandas, et désinstallez et actualisez le package, mais cela ne fonctionne pas.

Y-a-t'il une solution? S'il vous plaît, aidez-moi avec ce problème :)

2
Blanche Huang

cela signifie que vos outils ne sont pas à jour

Pouvez-vous essayer cela dans l'invite de commande?

pip install --upgrade setuptools
1
Pawan Upadhyay