Right-click on the Command Prompt icon in the Start menu.
Select "Run as administrator".
Confirm the User Account Control prompt if prompted.
!pipinstallpandas
!pipinstalljupyter# If you want to install matplotlib as well, uncomment the line below# !pip install matplotlib
!jupyternotebook--version
jupyter notebook
importnumpyasnpimportmatplotlib.pyplotasplt# Data for plottingt=np.arange(0.0, 2.0, 0.01)
s=1+np.sin(2*np.pi*t)
fig, ax=plt.subplots()
ax.plot(t, s)
ax.set(xlabel='time (s)', ylabel='voltage (mV)',
title='About as simple as it gets, folks')
ax.grid()
plt.show()