I just updated spyder to 5.1.5 and all it takes is these 4 lines of code to break the kernel:
import numpy as np
import matplotlib.pyplot as plt
arr = np.arange(0,100)
plt.plot(arr)
Other plots also fail. Inline plotting also fails. Help!
I made a new environment using anaconda:
conda create -n ws_fcst python=3.8 spyder pandas numpy matplotlib scikit-learn sqlalchemy pyodbc
Still the same problem.