web-dev-qa-db-fra.com

Séquence répétée étrange imprimée sur la console lors de l'installation de packages via conda

Mes spécifications système:

C:\Users\Lenovo>conda info
Current conda install:

           platform : win-64
      conda version : 4.3.8
   conda is private : False
  conda-env version : 4.3.8
conda-build version : 1.21.3
     python version : 3.5.2.final.0
   requests version : 2.12.4
   root environment : C:\Anaconda3  (writable)
default environment : C:\Anaconda3
   envs directories : C:\Anaconda3\envs
      package cache : C:\Anaconda3\pkgs
       channel URLs : https://repo.continuum.io/pkgs/free/win-64
                      https://repo.continuum.io/pkgs/free/noarch
                      https://repo.continuum.io/pkgs/r/win-64
                      https://repo.continuum.io/pkgs/r/noarch
                      https://repo.continuum.io/pkgs/pro/win-64
                      https://repo.continuum.io/pkgs/pro/noarch
                      https://repo.continuum.io/pkgs/msys2/win-64
                      https://repo.continuum.io/pkgs/msys2/noarch
        config file : None
       offline mode : False
         user-agent : conda/4.3.8 requests/2.12.4 CPython/3.5.2 Windows/7 Windows/6.1.7601

Récemment, après avoir installé ou mis à jour des packages via conda et parfois même pipé la séquence suivante est imprimée sur la console:

extern "Python": function Cryptography_locking_cb() called, but @ffi.def_extern(
) was not called in the current subinterpreter.  Returning 0.
extern "Python": function Cryptography_locking_cb() called, but @ffi.def_extern(
) was not called in the current subinterpreter.  Returning 0.
extern "Python": function Cryptography_locking_cb() called, but @ffi.def_extern(
) was not called in the current subinterpreter.  Returning 0.
extern "Python": function Cryptography_locking_cb() called, but @ffi.def_extern(
) was not called in the current subinterpreter.  Returning 0.
... # keeps repeating

Je ne pourrais pas vous dire combien de fois cela se répète j'exécute console2 et l'historique des commandes est coupé après mes 300 lignes. Je pourrais imprimer le tout dans un fichier texte si nécessaire, mais j'ai pensé que je demanderais d'abord. Quelqu'un sait-il ce que c'est ou comment y remédier?

14
James Draper

Selon cet article , vous pouvez passer à Cryptography 1.7 avec pip:

pip install --upgrade pip
pip install cryptography>=1.7 --upgrade
16
Vamei