How To Update The Packages In Ipython Like Jupyter & Spyder
I wrote this !pip install seaborn to install the updated version of seaborn, then the system shows a warning that then I wrote this pip install --upgrade pip trying to update the
Solution 1:
You just forgot put the !
before pip install --upgrade pip
.
Do this: !pip install --upgrade pip
See this for more information, if you are using conda:
https://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/
Post a Comment for "How To Update The Packages In Ipython Like Jupyter & Spyder"