21Jul/090
Install easy_install Via yum on Linux CentOS Server
To install easy_install on Linux using yum you will need to install the python-setuptools package. Installing this package with yum is easy by following the directions below.
Run this command in your ssh termianl bash:
1 | yum install python-setuptools |
An example of a python-setuptools install is below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | [root@server ~] # yum install python-setuptools Loading "fastestmirror" plugin Loading mirror speeds from cached hostfile * base: pubmirrors.reflected.net * updates: mirrors.serveraxis.net * addons: mirror.anl.gov * ruby: repo.premiumhelp.eu * extras: mirror.sanctuaryhost.com Setting up Install Process Parsing package install arguments Resolving Dependencies --> Running transaction check ---> Package python-setuptools.noarch 0:0.6c5-2.el5 set to be updated --> Finished Dependency Resolution Dependencies Resolved ============================================================================= Package Arch Version Repository Size ============================================================================= Installing: python-setuptools noarch 0.6c5-2.el5 base 479 k Transaction Summary ============================================================================= Install 1 Package(s) Update 0 Package(s) Remove 0 Package(s) Total download size: 479 k Is this ok [y /N ]: y Downloading Packages: (1 /1 ): python-setuptools- 100% |=========================| 479 kB 00:00 Running rpm_check_debug Running Transaction Test Finished Transaction Test Transaction Test Succeeded Running Transaction Installing: python-setuptools ######################### [1/1] Installed: python-setuptools.noarch 0:0.6c5-2.el5 Complete! |