python安装遇到的相关问题
1. python3-pip installed but pip3 command not found?
sudo apt install python3-pip 执行命令,显示已经安装成功, 但是,执行的时候却找不到pip3
    :~/Documents/backup_code/RF$ sudo pip3 install --upgrade pip
    sudo: pip3: command not found
    解决办法
  
    :~$ dpkg -L python3-pip
....
   /usr/share
   /usr/share/man
  /usr/share/man/man1
  /usr/share/man/man1/pip3.1.gz
  /usr/share/doc
  /usr/share/doc/python3-pip
  /usr/share/doc/python3-pip/copyright
  /usr/bin
  /usr/bin/pip3
  /usr/share/doc/python3-pip/changelog.Debian.gz
 :~$   sudo ln -s /usr/bin/pip3 /usr/local/bin/pip3
相关推荐
  zhangpan    2020-06-11  
   pythonxuexi    2020-06-25  
   JakobHu    2020-05-27  
   chuckchen    2020-10-31  
   Dreamhome    2020-10-09  
   xirongxudlut    2020-09-28  
   星辰大海的路上    2020-09-13  
   chaochao    2020-08-31  
   猪猪侠喜欢躲猫猫    2020-08-17  
   快递小可    2020-08-16  
   shengge0    2020-07-26  
   巩庆奎    2020-07-21  
   张文倩数据库学生    2020-07-19  
   xirongxudlut    2020-07-18  
   Ericbig    2020-07-18  
   kyelu    2020-07-09  
   liangzhouqu    2020-07-07  
 