切换默认python版本
vim .bashrc
# edit .bashrc
alias python='python3'
#reboot
. .bashrc
通过sys.path来查看当前Python在导入包时候的搜索路径。
>>> import sys
>>> sys.path
vim .bashrc
# edit .bashrc
alias python='python3'
#reboot
. .bashrc
>>> import sys
>>> sys.path