CyclicalEngineering
CyclicalEngineering

Reputation: 207

Installing Pillow on MacOS Sierra

The default Python is 2.7 that's come prebuilt into the OS.

When trying to install Pillow using the commands:

sudo pip install Pillow

It installs it into my Python 2.7 direction, rather than the latest 3.x version I've installed. How do I go about solving this issue? Is there a way to point the installer to the correct directory?

Upvotes: 1

Views: 828

Answers (1)

J A S K I E R
J A S K I E R

Reputation: 2184

Have you tried this? Moreover, read about homebrew installation (Homebrew, pillow, pip).

Sudo pip3 install Pillow

Upvotes: 1

Related Questions