web-dev-qa-db-fra.com

Spyder signale un alias non valide lors de l'exécution d'un script

Je ne peux pas dire pourquoi cela se produit, mais cela semble avoir commencé lorsque j'ai mis à jour (tout - mise à jour conda - tout). Cela faisait environ 1 an depuis ma dernière mise à jour. Quelque chose a dû changer.

Voici le script:

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Mar  3 11:25:22 2019

@author: pitosalas
"""

print("hello")

Et voici la sortie en appuyant sur le triangle vert dans spyder:

Python 3.6.6 |Anaconda, Inc.| (default, Jun 28 2018, 11:07:29)
Type "copyright", "credits" or "license" for more information.

IPython 7.3.0 -- An enhanced Interactive Python.

runfile('/Users/pitosalas/Box Sync/datawork/2019Resubmit/deleteme.py', wdir='/Users/pitosalas/Box Sync/datawork/2019Resubmit')
ERROR:root:Invalid alias: The name clear can't be aliased because it is another magic command.
ERROR:root:Invalid alias: The name more can't be aliased because it is another magic command.
ERROR:root:Invalid alias: The name less can't be aliased because it is another magic command.
ERROR:root:Invalid alias: The name man can't be aliased because it is another magic command.
hello
9
pitosalas

conda install ipython = 7.2.0 a fonctionné pour moi. ipython 7.3.0 était le coupable.

1