Jupyter Desktop App Mac

App

With its powerful tools and dazzling effects, Keynote makes it easy to create stunning and memorable presentations, and comes included with most Apple devices. Use Apple Pencil on your iPad to create diagrams or illustrations that bring your slides to life. And with real‑time collaboration, your team can work together, whether they’re on Mac, iPad, iPhone, or using a PC.

Keynote sets the stage for an impressive presentation. A simple, intuitive interface puts important tools front and center, so everyone on your team can easily add beautiful charts, edit photos, and incorporate cinematic effects. And Rehearse Mode lets you practice on the go, with the current or next slide, notes, and clock — all in one view.

Try pip uninstall jupytercore.Details below: I ran into a similar issue when my jupyter notebook only showed Python 2 notebook. (no Python 3 notebook) I tried to uninstall jupyter by pip unistall jupyter, pi3 uninstall jupyter, and the suggested pip-autoremove jupyter -y.

Start with a gorgeous layout.

Choose from over 30 eye‑catching themes that instantly give your presentation a professional look. Or create your own slide designs, background images, and page‑by‑page customization.

Create next-level animations.

Add drama to your presentation with more than 30 cinematic transitions and effects. Make your words pop by adding textures, color gradients, and even photos — with just a tap. And animate objects along a path using Apple Pencil or your finger on your iPhone or iPad.

See a few examples of Keynote animations

Make every slide spectacular.

Choose from over 700 Apple-designed shapes, galleries, math equations, and charts. Take a photo or scan a document with your iPhone, and Continuity Camera can send it straight to Keynote on your Mac.

What’s new in Keynote.

New

Play YouTube and Vimeo videos right in Keynote.

Embed a video from YouTube or Vimeo, then play them right in your presentations, without the need to download or open the video in a media player.*

New

Jupyter Desktop App Mac Os

Mac

Outline your presentation. Easier.

Jupiter Desktop App Mac Desktop

With outline view for iPhone and iPad, quickly jot down your thoughts, restructure ideas, and move concepts from slide to slide. Then, switch to slide view and start designing.

New

Turn handwriting into text. Magically.

With Scribble and Apple Pencil, your handwritten words will automatically be converted to typed text. Take notes, write a presentation, or annotate text fast and easy.

Showcase videos like never before.

Play videos and movies continuously across slides, without the need to start and stop, or edit them into clips.

Align objects to motion paths.

With just a tap, you can point an object in the right direction, and it will stay pointed in the right direction as it travels along a path.

Present over video conference.
Like a pro.

Keynote for Mac allows you to play a slideshow within a window, instead of full screen, so you can access other apps and files while you present.

You don’t work in one place on just one device. The same goes for Keynote. Work seamlessly across all your Apple devices. The slides you create using a Mac or iPad will look the same on an iPhone or web browser — and vice versa.

You can also work on presentations stored on iCloud or Box using a PC.

Work together in the same presentation, from across town or across the world. You can see your team’s edits as they make them — and they can watch as you make yours, too. Just select a name on the collaborator list to jump to anyone’s cursor.

Add color, illustrations, and handwritten comments for more beautiful presentations with Apple Pencil on your iPad.

Teaming up with someone who uses Microsoft PowerPoint? Keynote makes it a great working relationship. You can save Keynote documents as PowerPoint files. Or import and edit PowerPoint documents right in Keynote.

Numbers

Create great-looking
spreadsheets. Together.

Learn more about Numbers

Pages

Create documents that are,
in a word, beautiful.

Learn more about PagesJupyter desktop app mac desktop

This is my preferred way to install Python and Jupyter notebook for doing scientific data analysis. There are many alternative ways of doing this that you can find on Google. I’m doing this on a MacBook Pro (Retina, 13-inch, Early 2015) with macOS High Sierra 10.13.3.

In the past, I used virtualenv to manage virtual environments with Python 2. Python3 has built-in handling of virtual environments, so I use that here instead. If you need to use Python 2, then you’ll want to install virtualenv (see first link at the bottom).

Install Homebrew

All of these steps are done in the Mac OS Terminal, so start that first.

First install XCode:

Install Homebrew:

Open or create the file ~/.bash_profile and write:

Install Python 3

As of 2018-4-9, this will install Python 3 (I think previously it installed Python 2):

Set up virtual environment

By default, Python 3 comes with the ability to create virtual environments.

Make a folder to host your virtual envs:

Create a virtual env for Jupyter:

Run virtual environment and Jupyter

Start the virtual env:

Install packages for scientific computing:

Run Jupyter:

A browser window will open with the Jupyter file browser in your current working directory.

Exit Jupyter and virtual environment

Jupyter notebook will run in your terminal window until you close it (with Ctrl-C).

You can close the virtual environment with:

UPDATE 2018-04-19: A very useful (and IMO essential) addition to Jupyter notebook is the Table of Contents extension. I show how I install this in a different blog post.

References

  • The steps above are mostly based on Maria Mele’s “Install Python 2.7, virtualenv and virtualenvwrapper on OS X Mavericks/Yosemite”
  • Documentation on Python 3 virtual environments
  • Explanation of how Homebrew installs Python — i.e. why Python 3 isn’t linked to the command`python`, which motivated some of my deviations from the above blog post