Skip to content

Commit

Permalink
Don't suggest sudo pip (#74)
Browse files Browse the repository at this point in the history
Sudo pip can cause problems with system installed python tools.  Also
added some additional info for installing on mac 10.11.
  • Loading branch information
digwanderlust committed Jun 8, 2016
1 parent 613df86 commit bffd333
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions docs/install.rst
Expand Up @@ -14,22 +14,26 @@ On Windows, this is:

On OS X, this is:

``sudo pip3 install pyobjc-core``
``pip3 install pyobjc-core``

``sudo pip3 install pyobjc``
``pip3 install pyobjc``

``sudo pip3 install pyautogui``
``pip3 install pyautogui``

If you are running El Capitan and have problems installing pyobjc try:

``MACOSX_DEPLOYMENT_TARGET=10.11 pip install pyobjc``

On Linux, this is:

``sudo pip3 install python3-xlib``
``pip3 install python3-xlib``

``sudo apt-get install scrot``

``sudo apt-get install python3-tk``

``sudo apt-get install python3-dev``

``sudo pip3 install pyautogui``
``pip3 install pyautogui``

PyAutoGUI will try to install Pillow (for its screenshot capabilities). This happens when pip installs PyAutoGUI.

0 comments on commit bffd333

Please sign in to comment.