pip is showing error 'lsb_release -a' returned non-zero exit status 1

前端 未结 10 885
迷失自我
迷失自我 2020-12-10 01:00

I am trying to install packages using pip and it is throwing error.

Command that I have used,

sudo pip install selenium

The error

10条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-10 01:41

    After installing python3.7.3 and changing the symbolic link of python3 to point to it, I had this error. Fixed it by changing first line to:

    # !/usr/bin/python3.5 -Es
    

    The original was almost that... had to add the ".5" only.

提交回复
热议问题