linux ubuntu Methods for installing uninstalling and removing ES2en ES3en

  • 2020-06-19 12:34:01
  • OfStack

preface

During my recent study of ES3en-ES4en, I found that it was really helpful to learn a new language and read the official documentation. This time, Most of my python code was completed based on the official API documentation of igraph.

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

This article will give you a detailed introduction about installing, uninstalling and deleting python-ES26en on linux ubuntu. Please share it for your reference and study.

1. How to install python-ES31en ? on Ubuntu 16.10;

First, update the system with the following command:


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

The above command will download the package list for Ubuntu 16.10 on your system. This will update the latest version of the package and the list of its dependencies on your system.

After downloading the latest package list in the help section above, you can run the installation process.

If python-ES44en is not installed in your compter, the command 'dpkg-ES46en ES47en-ES48en' will give you an followin error.


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:~$

Install python-ES54en:

After the system is updated, install ES58en-ES59en using the following command:


sudo apt-get install python-igraph

The above command will confirm before installing the package on the Ubuntu 16.10 operating system. If you have not logged in as su, the installer will ask for the root password. After the installation is complete, you can use the packages on your system.

2. How do I uninstall/remove python-ES71en from Ubuntu 16.10?

Now we will see the ES75en-ES76en command uninstalled from Ubuntu 16.10. To uninstall this package, you can easily use the apt command and remove the package from the Linux operating system.

Delete the ES81en-ES82en command using the following command:


sudo apt-get remove python-igraph

The following command is used to delete the ES86en-ES87en package and its dependencies:


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

This will remove ES91en-igraph and all its dependent packages from the system that are no longer needed.

Delete all configuration files of ES95en-ES96en completely:

The following command should be used with caution as it deletes all configuration files and data:


sudo apt-get purge python-igraph

Alternatively, you can use the following command:


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

The above command deletes all configuration files and data associated with the python-ES106en package. You cannot recover deleted data, so use this command with caution.

Refer to the article: http: / / www chenxm. cc post / 447. html

conclusion


Related articles: