python升级到python3..7后的问题

升级到python3.7后,使用pip install会报错:
subprcess.CalledProcessError:Command’(‘lsb_release’, ‘-a’)’ returned …
解决办法:
Vim /use/bin/lsb_release
把第一行由原来的:
#!/usr/bin/python3-Es
改成升级后的版本即可:
#!/usr/bin/python3.7 -Es

你可能感兴趣的:(笔记)