Open UpwardTrajectory opened 5 years ago
Just want to second @UpwardTrajectory note here. When I run pd.__version__
in the Learn.co jupyter notebook, the output returns 0.23.4
. This is a few versions behind the most up-to-date version of pandas
which is currently at 0.24.2
.
I was able to resolve this by doing this:
!pip install openpyxl
import openpyxl
df.to_excel('NewSavedView.xlsx')
when resolving
df.to_excel(...)
it refers to openpyxl, which we never installed on our learn-env. I tried going to command line and usingconda install openpyxl
but this doesn't seem to be immediately usable in this notebook, b/c when I attemptedimport openpyxl
I got: ModuleNotFoundError: No module named 'openpyxl'