Ubuntu18.04 下安装Pyinstaller问题
环境:Ubuntu18.04
问题描述:使用pip/pip3 install pyinstaller 安装后找不到pyinstaller命令
疑似原因:ubuntu18.04自带python环境,pyinstaller被安装在/home/username/.local/bin下面(安装完成后可在该路径下搜索一下是否有pyinstaller文件,如果没有可以尝试使用下面命令解决), 需要在系统默认路径/usr/bin 下建立pyinstaller的软链接
本人临时解决方法:
执行ln -s /home/username/.local/bin/pyinstaller /usr/bin/pyinstaller