3
apt-get安装vs pip安装
对于下载python软件包时必须使用上述命令的情况,我有些困惑。我试图根据这个问题的答案下载名为pyudev的软件包。我执行了以下命令: sudo pip install python-pyudev 但收到以下消息: Downloading/unpacking python-pyudev Could not find any downloads that satisfy the requirement python-pyudev Cleaning up... No distributions at all found for python-pyudev Storing complete log in /home/vineet/.pip/pip.log 但是以下工作正常: sudo apt-get install python-pyudev 什么时候apt-get应该用来安装软件包python-pip?什么时候应该使用?