First, Easy_install installation process
There are many kinds of installation process, I also looked for a lot of examples, but the results are not very good, the following methods are good results.
Similar to Yum, Easy_install uses Easy_install to easily search Python software in the PyPI repository
Installing Easy_install is relatively straightforward, and if you configure Yum, you can search directly for Python-setuptools
Yum–y Install Python-setuptools
After installing Python-setuptools, you also need to install Python-devel
Yum–y Install Python-devel
You can then use Easy_install to install a variety of Python software or extensions
Installing Ipython
Easy_install Ipython
More Convenient
Second, the principle analysis:
Know how to use, I think most of them do not like in-depth research, after reading one is enough, but I think if you want to solve the problem of the installation, or should look at the second only good.
I will use the simplest and most obvious words to understand the principle, as far as possible without esoteric terminology.
Please look forward to ...
Python easy_install CentOS installation process and principle analysis