本文主要是介绍ipython bpython -bash: *python: command not found,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题:
当pip安装ipython, bpython后, 直接执行ipython or bpython会报错:*python: command not found
解决:
环境变量问题,设置别名就好。
alias ipython='python3 -m IPython'
alias bpython='python3 -m bpython'
这篇关于ipython bpython -bash: *python: command not found的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!