本文介绍了在kali linuix python3-pip中面临问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正面临这个问题:

sudo apt-get install python3-pip
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package python3-pip is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'python3-pip' has no installation candidate

这是我面临的错误

我已经尝试过这些命令 apt-get update &&apt-get 升级

And I have try these commands apt-get update && apt-get upgrade

但是问题没有解决.

推荐答案

试试这些命令

sudo apt-get update
sudo apt-get upgrade
sudo apt install python3-pip

这篇关于在kali linuix python3-pip中面临问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 08:57