Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/313.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/linux/24.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python easy_install和apt get之间有什么区别_Python_Linux_Ubuntu_Packages - Fatal编程技术网

Python easy_install和apt get之间有什么区别

Python easy_install和apt get之间有什么区别,python,linux,ubuntu,packages,Python,Linux,Ubuntu,Packages,我刚刚开始使用Ubuntu作为我的第一个Linux,我有几个问题 easy_install和apt get之间有什么区别 如何使用以这两种方式安装的软件包更新软件包 他们在蟒蛇下,对吗 你混淆了两件完全不同的事情 Aptitude是Ubuntu系统范围的软件包管理器,Aptitude是其中的一部分。它有绝对适用于一切的软件包——应用程序、库、系统UTIL等等。它们可能不是最新版本,因为包通常只针对每个单独的Ubuntu版本进行更新(除了安全性和bug修复) easy\u install是一个仅用

我刚刚开始使用Ubuntu作为我的第一个Linux,我有几个问题

  • easy_install和apt get之间有什么区别
  • 如何使用以这两种方式安装的软件包更新软件包
  • 他们在蟒蛇下,对吗

  • 你混淆了两件完全不同的事情

    Aptitude是Ubuntu系统范围的软件包管理器,Aptitude是其中的一部分。它有绝对适用于一切的软件包——应用程序、库、系统UTIL等等。它们可能不是最新版本,因为包通常只针对每个单独的Ubuntu版本进行更新(除了安全性和bug修复)


    easy\u install
    是一个仅用于安装Python库的Python系统。它不做任何其他事情。这些库安装在系统Python的
    站点包
    目录中。easy_install有一些缺点,其中之一是很难升级和卸载库。改用
    pip

    这里的主题外,属于.very clear.explanation。非常感谢。