Cannot install pip install pyautogui, error code 1

后端 未结 2 1001
北海茫月
北海茫月 2021-01-12 21:46

pip install command is working for me, I tried installing selenium package it is working in my setup but when I try to install

相关标签:
2条回答
  • 2021-01-12 22:08

    I resolved the problem by using the command pip3 install pyautogui from the console terminal window of the workstation. The cause of the error is that before doing that I was trying to use an SSH terminal window to install the software remotely. The SSH terminal window environment does not support a window system.

    0 讨论(0)
  • 2021-01-12 22:24

    The error message is just as it reads. You need the Pillow port of the PIL library as a dependency:

    pip install Pillow # a popular port of the Python Imaging Library, which is needed here
    
    0 讨论(0)
提交回复
热议问题