linux ubuntu中安装、卸载和删除python-igraph的方法教程

本站所有内容来自互联网收集,仅供学习和交流,请勿用于商业用途。如有侵权、不妥之处,请第一时间联系我们删除!Q群:迪思分享

免费资源网 – https://freexyz.cn/

前言

最近在学习python-igraph,发现其实学习一种全新的语言看官方的文档是真的很有帮助,这次我的大部分python代码的完成都是靠着igraph官方的API文档。

官方API:http://pythonhosted.org/python-igraph/igraph.Graph-class.html

本文将给大家详细介绍关于在linux ubuntu安装、卸载和删除python-igraph的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

一、如何在Ubuntu 16.10上安装python-igraph?

首先使用以下命令更新系统:

sudo add-apt-repository ppa:igraph/ppa # Add the Launchpad repository to apt sudo apt-get update

以上命令将在您的系统上下载Ubuntu 16.10的软件包列表。这将更新最新版本的软件包及其依赖于您的系统的列表。

在上面的帮助下载最新的软件包列表后,可以运行安装过程。

如果您的compter中没有安装python-igraph,那么命令dpkg -L python-igraph将给出followin错误。

deepak@deepak-VirtualBox:~$ dpkg -L python-igraph dpkg-query: package python-igraph is not installed Use dpkg –info (= dpkg-deb –info) to examine archive files, and dpkg –contents (= dpkg-deb –contents) to list their contents. deepak@deepak-VirtualBox:~$

安装python -igraph:

系统更新后,使用以下命令安装python-igraph:

sudo apt-get install python-igraph

在Ubuntu 16.10操作系统上安装软件包之前,以上命令将确认。如果您还没有以su身份登录,安装程序会询问root密码。安装完成后,您可以使用系统上的软件包。

二、如何从Ubuntu 16.10卸载/删除python-igraph?

现在我们将看到从Ubuntu 16.10卸载python-igraph命令。要卸载此软件包,您可以轻松使用apt命令,并从Linux操作系统中删除该软件包。

使用以下命令删除python-igraph命令:

sudo apt-get remove python-igraph

以下命令用于删除python -igraph包及其依赖关系:

sudo apt-get remove –auto-remove python-igraph

这将删除系统中不再需要的python -igraph及其所有依赖软件包。

完全删除所有配置文件的python-igraph:

应该谨慎使用以下命令,因为它会删除所有配置文件和数据:

sudo apt-get purge python-igraph

或者也可以使用以下命令:

sudo apt-get purge –auto-remove python-igraph

以上命令将删除与python-igraph包关联的所有配置文件和数据。您无法恢复删除数据,因此请谨慎使用此命令。

参考文章:http://www.chenxm.cc/post/447.html

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对免费资源网的支持。

免费资源网 – https://freexyz.cn/


© 版权声明
THE END
★喜欢这篇文章吗?喜欢的话,麻烦动动手指支持一下!★
点赞12 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容