alpeace89
Posts: 49
Joined: Wed Dec 04, 2013 12:34 am

Installing pyautogui on Rpi

Wed Sep 16, 2015 11:27 pm

Hi,

I am trying to install the pyautogui package on my Rpi using the Linux instructions at: https://pyautogui.readthedocs.org/en/la ... stall.html

But when I run:

Code: Select all

sudo pip3 install python3-xlib
I get:

Code: Select all

Sudo: pip3: command not found 
Am I correct that I should have pip3 automatically with python3? Any suggestions appreciated.

Cheers,
Alex

User avatar
rpdom
Posts: 17173
Joined: Sun May 06, 2012 5:17 am
Location: Chelmsford, Essex, UK

Re: Installing pyautogui on Rpi

Thu Sep 17, 2015 3:29 am

Make sure pip3 is installed

Code: Select all

sudo apt-get install python3-pip

alpeace89
Posts: 49
Joined: Wed Dec 04, 2013 12:34 am

Re: Installing pyautogui on Rpi

Thu Sep 17, 2015 7:23 am

Hi,

When I run:

Code: Select all

sudo get-apt install python3-pip
It says it's already installed and is the newest version.
Cheers,
Alex

DirkS
Posts: 10363
Joined: Tue Jun 19, 2012 9:46 pm
Location: Essex, UK

Re: Installing pyautogui on Rpi

Thu Sep 17, 2015 7:36 am

Try

Code: Select all

sudo pip-3.2 install python3-xlib

Return to “Python”