jichun29
青龙傻妞
青龙报错bash: pip3: command not found
刚刚打算安装一个依赖,在终端运行安装命令显示:bash: pip3: command not found错误分析:当使用命令pip3 install XXX出现错误 bash: pip3: command not found错误原因:pip3还没有安装解决方法:先安装扩展源EPEL,这个扩展源提供了很多软件包的下载。yum -y install epel-release然后安装 pip3Centos系统yum install python3-pip -yUbuntu等系统sudo apt install python3-pip -y
热门文章