Also, not all of the Jupyter packages have 'jupyter' in the name - the notebook UI package is just called 'notebook'.
I think that if you 'pip install --upgrade jupyter', it should upgrade all dependencies, even if the 'jupyter' package itself is up to date (that package is empty, it just has depdendencies on other packages). I might be misremembering that, though. On 18 August 2016 at 22:15, Matthias Bussonnier < [email protected]> wrote: > Hi Andy, > > You usually can update a specific package with `pip install > <packagename> --upgrade` You can sometime also find `-U` instead of > `--upgrade` but it should do the same. > > In you case you want to run it your 3 outdated packages. > > Hope that helps, > -- > Matthias > > On Thu, Aug 18, 2016 at 1:39 PM, Andy Davidson > <[email protected]> wrote: > > I am new to python. I am not sure how I would update jupiter. Using pip3 > > show and ‘list —outdated’ it looks like I have the current version of > > jupiter how ever the dependencies are out of date? > > > > Thanks > > > > Andy > > > > $ pip3 show jupyter > > > > --- > > > > Metadata-Version: 2.0 > > > > Name: jupyter > > > > Version: 1.0.0 > > > > Summary: Jupyter metapackage. Install all the Jupyter components in one > go. > > > > Home-page: http://jupyter.org > > > > Author: Jupyter Development Team > > > > Author-email: [email protected] > > > > License: BSD > > > > Location: > > /Library/Frameworks/Python.framework/Versions/3.4/lib/ > python3.4/site-packages > > > > Requires: qtconsole, nbconvert, ipykernel, notebook, jupyter-console, > > ipywidgets > > > > Classifiers: > > > > Intended Audience :: Developers > > > > Intended Audience :: System Administrators > > > > Intended Audience :: Science/Research > > > > License :: OSI Approved :: BSD License > > > > Programming Language :: Python > > > > Programming Language :: Python :: 2 > > > > Programming Language :: Python :: 2.7 > > > > Programming Language :: Python :: 3 > > > > Programming Language :: Python :: 3.3 > > > > Programming Language :: Python :: 3.4 > > > > > > > > $ pip3 list --outdated |grep jupyter > > > > jupyter-client (4.1.1) - Latest: 4.3.0 [wheel] > > > > jupyter-console (4.0.3) - Latest: 5.0.0 [wheel] > > > > jupyter-core (4.0.6) - Latest: 4.1.1 [wheel] > > > > $ > > > > > > -- > > You received this message because you are subscribed to the Google Groups > > "Project Jupyter" group. > > To unsubscribe from this group and stop receiving emails from it, send an > > email to [email protected]. > > To post to this group, send email to [email protected]. > > To view this discussion on the web visit > > https://groups.google.com/d/msgid/jupyter/D3DB6B0F.44710% > 25Andy%40SantaCruzIntegration.com. > > For more options, visit https://groups.google.com/d/optout. > > -- > You received this message because you are subscribed to the Google Groups > "Project Jupyter" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/jupyter/CANJQusVeJ0k6%3DDR--PoM%2B7k%3DKMjYVm6EWnLuWeES2ovYYrHsuw% > 40mail.gmail.com. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/CAOvn4qiEDW1tiWk3SVV_y%2B_ymkG%3D2t7TS0XsvZEK-nR4-BtShQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
