2021-10-15安装python的包时,遇到Try to run this command from the system terminal. Make sure that you use ...

原因是pip的版本不对采用如下方法解决

通过PyCharm setting安装第三方包,安装失败-百度经验 (baidu.com)

方法2:

第一步:

在DOS窗口查看pip版本

python -m pip show pip

当前环境的pip 版本19.3.1,没有main()

2021-10-15安装python的包时,遇到Try to run this command from the system terminal. Make sure that you use ..._第1张图片

第二步:

重新安装低版本pip

python -m pip install --upgrade pip==9.0.3

2021-10-15安装python的包时,遇到Try to run this command from the system terminal. Make sure that you use ..._第2张图片

第三步:

安装成功

2021-10-15安装python的包时,遇到Try to run this command from the system terminal. Make sure that you use ..._第3张图片

第四步:

在PyCharm中,重新安装‘pyautogui’

安装成功

2021-10-15安装python的包时,遇到Try to run this command from the system terminal. Make sure that you use ..._第4张图片

你可能感兴趣的:(python,python,pycharm)