如:pip install httprunner,安装成功后输入hrun -V 提示"command not found"。
造成这个问题的原因是PATH环境变量的问题,因为使用的是homebrew安装的python,导致pip bin目录的环境变量没注册上。
解决办法是将python bin目录加入环境变量。
1.打开终端,进vi编辑器
bash
vi ~/.bash_profile
2.添加一行
bash
export PATH=${PATH}:你的python安装bin目录
3.刷新配置文件
bash
source ~/.bash_profile