ubuntu是默认安装了python2的,所以直接使用
pip install XXX
是默认安装到python2的,安装到python3 的指令是
pip3 install XXXX
或者
python3 -m pip install XXX