当前位置: 首页 > 工具软件 > bPython > 使用案例 >

ipython bpython -bash: *python: command not found

陆文斌
2023-12-01

问题:

当pip安装ipython, bpython后, 直接执行ipython or bpython会报错:*python: command not found

解决:

环境变量问题,设置别名就好。

alias ipython='python3 -m IPython'
alias bpython='python3 -m bpython'
 类似资料: