LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-14-2013, 06:07 AM   #1
NikosGr
Member
 
Registered: Jun 2013
Posts: 63

Rep: Reputation: 0
Question Need help installing Python's pip


I'm on CentOS 6.3 and i just install latest Python v3.4a

i have also 'yum groupinstall "development tools"'

But i need 'pip priot of installing needed modules for my script like 'pymysql', 'pygeoip'

yum install python-pip
says it cannot find any packagres. any idea why and hot to be able to install pip on my CentOS?
 
Old 11-15-2013, 12:13 AM   #2
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
http://code.activestate.com/lists/python-list/655360/
> "Nick the Gr33k"

→ ""If you want to compile python outside they package manager,
you'll also have to install all the libraries outside of the package manager.""


*** I.e. manual install. If python-pip works with the alpha Python 3.4a !

-
 
Old 11-15-2013, 03:34 AM   #3
NikosGr
Member
 
Registered: Jun 2013
Posts: 63

Original Poster
Rep: Reputation: 0
Is there any wahy to remove the compilation of 3.4 and try to install it via yum's package manager along with pip?

please provide me with the necessary command i have to issue.
 
Old 11-15-2013, 04:10 AM   #4
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 3 .
Quote:
Is there any wahy to remove the compilation of 3.4
How to remove Python : Didn't you ask that question some times before ?
.. As you know : Removing is "Find the Python-3 files, and delete them".


Quote:
3.4 and try to install it via yum's package manager along with pip ?
There is no real "3.4". That's a development version :
http://www.python.org/
Quote : ""Python 3.4.0 alpha 4 has been released""
Current stable is "3.3.2", and there's a release candidate '3.3.3'.

"yum install" : '3.3.2' is in the IUS repo :
(( Ref. the info you got '03 June 3013', post #2, @evo2
http://www.linuxquestions.org/questi...-4175464523/#2 ))

i686 http://dl.iuscommunity.org/pub/ius/s...CentOS/6/i386/
x86_64 http://dl.iuscommunity.org/pub/ius/s...ntOS/6/x86_64/
Code:
[IUS]
name=ius 
baseurl=http://dl.iuscommunity.org/pub/ius/stable/CentOS/6/<arch>
enabled=1
gpgcheck=0
-

Last edited by knudfl; 11-15-2013 at 11:38 AM.
 
Old 11-15-2013, 04:15 AM   #5
NikosGr
Member
 
Registered: Jun 2013
Posts: 63

Original Poster
Rep: Reputation: 0
Python 3.4a is installed under '/usr/local/bin/Python'

if i understand you correctly i have to 'rm -rf /usr/local/bin/Python/' ?


becauee

'yum install python3' and 'yum install python-pip'

Why the default repositories does not not include those 2 pavkages?

What will i have to do *exactly* in order to be able to install python and python's pip

You have to be very specific so i cna understand it.
 
Old 11-15-2013, 08:16 AM   #6
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
#
Quote:
'yum install python3' and 'yum install python-pip'

Why the default repositories does not not include those 2 packages ?
CentOS is a server OS. No unnecessary packages by default.
All administrative tools are Python2 based.
CentOS is based on Fedora 12.

If you want bleeding edge applications, use later than "Fedora 12".
→ → Fedora 19 has Python 3 : python3-3.3.2-2.fc19 .
... And 220 (two hundred and twenty) "python3-<app-name>" :
Included is python3-pip-1.3.1-1.fc19 !
* List http://dl.fedoraproject.org/pub/fedo...os/Packages/p/


Quote:
If I understand you correctly I have to 'rm -rf /usr/local/bin/Python/' ?
Better : 1) $ cd /usr/local/bin/
2) # rm -rf Python/

-

Last edited by knudfl; 11-15-2013 at 08:18 AM.
 
Old 11-15-2013, 08:21 AM   #7
NikosGr
Member
 
Registered: Jun 2013
Posts: 63

Original Poster
Rep: Reputation: 0
Only CentOS works with cPanel

Also how's

1) $ cd /usr/local/bin/
2) # rm -rf Python/

any different from 'rm -rf /usr/local/bin/Python/' ?

since i have installed python 34.a from source with configure/make/make install shouldnt i try to 'make uninstall' But i have deleted the /temp/ file which i sues to unzip python.
i also have managed to install EPEL repository.

should i leave it as it it is and:

yum install python3
yum install python-pip

or this will end in a complete mess with havign 3 pythons installed?

Last edited by NikosGr; 11-15-2013 at 08:26 AM.
 
Old 11-15-2013, 08:24 AM   #8
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Quote:
What will i have to do *exactly* in order to be able to install python and python's pip

You have to be very specific so I can understand it.
I'll come back to that later.
 
Old 11-15-2013, 09:42 AM   #9
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 7 .
Quote:
'make uninstall'
There is no 'uninstall' in any Python2 or 3.

EPEL.repo 'p' http://dl.fedoraproject.org/pub/epel...r_p.group.html
→ → No python3 . All applications "python-** " are "python 2.6".

How to setup the 'ius.repo' : # gedit /etc/yum.repos.d/ius.repo
... And then copy/paste the "code" from post #4. And save the file.
Then you can do # yum install python33-devel


Quote:
and different from 'rm -rf /usr/local/bin/Python/' ?
If you by mistake hit <Enter> ....
when you have typed 'rm -rf /' or 'rm -rf /usr/' : No OS any more !

-

Last edited by knudfl; 11-15-2013 at 11:41 AM.
 
Old 11-15-2013, 10:01 AM   #10
NikosGr
Member
 
Registered: Jun 2013
Posts: 63

Original Poster
Rep: Reputation: 0
I'll write it all and then i will hot enter, or copy paste it like it is now written

i have installed EPEL but

i cannot update it and:

'yum install python3' does not return any packages back.

Prior of those of course is it okey to 'rm -rf /usr/local/bin/Python/'? Won't it levae behind any leftovers?
 
Old 11-15-2013, 11:27 AM   #11
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 10 .
Quote:
I have installed EPEL but

I cannot update it and:

'yum install python3' does not return any packages back.
What is the purpose of EPEL concerning the current subject : Python3 ?
**** There is no 'python3' in EPEL for CentOS 6.

The file to create is /etc/yum.repos.d/ius.repo

-
 
Old 11-15-2013, 11:30 AM   #12
NikosGr
Member
 
Registered: Jun 2013
Posts: 63

Original Poster
Rep: Reputation: 0
Just tell em pelase hwo to install latest python and pip through yum.
 
Old 11-15-2013, 12:34 PM   #13
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 12 .

A) Python 3 :
1) $ su
2) # gedit /etc/yum.repos.d/ius.repo
... Then enter the repo text for i386, and save the file :
[IUS]
name=ius
baseurl=http://dl.iuscommunity.org/pub/ius/stable/CentOS/6/i386
enabled=1
gpgcheck=0

4) # yum list python3*
... To know the available packages. (In case you didn't visit the link.)
5) # yum install python33-devel
6) $ which python3
... The reply is : /usr/bin/python3

B) 'python3-pip' : No repo with this package.

pip : $ mkdir pypi
$ cd pypi/
$ wget https://bitbucket.org/pypa/setuptool...ap/ez_setup.py
$ su
# python3 ez_setup.py
$ wget https://raw.github.com/pypa/pip/mast...rib/get-pip.py
# python3 get-pip.py
... and you have /usr/bin/pip*

Using pip, example : # pip-3.3 install htmltag

The current list of available Python3 applications is here ..
https://pypi.python.org/pypi?:action...c=533&show=all

-

Last edited by knudfl; 11-16-2013 at 04:18 AM.
 
Old 11-15-2013, 12:44 PM   #14
Habitual
LQ Veteran
 
Registered: Jan 2011
Location: Abingdon, VA
Distribution: Catalina
Posts: 9,374
Blog Entries: 37

Rep: Reputation: Disabled
Have a gander "Download and install Python 3.3.0" section
 
Old 11-15-2013, 12:45 PM   #15
NikosGr
Member
 
Registered: Jun 2013
Posts: 63

Original Poster
Rep: Reputation: 0
After step 6 there is no 'pypy' dir just 'pip-1.4.1 dir'

so i cannot cd pypi.

why cant we just install pip via tum like we did with python33-devel and we have to explicitly wget it?
 
  


Reply

Tags
pip, python



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how do I install pip/setuptools and other Python packages without sudo/su privileges? OMouse Linux - Software 2 08-30-2013 11:40 AM
[SOLVED] python, pip --user into a different directory than .local a4z Programming 1 06-16-2013 10:39 AM
Adding an extra python repo for 'yum' & finding 'pip' package NikosGr Linux - Newbie 4 06-04-2013 04:25 AM
Can't build dev-python/pip flebber Sabayon 0 11-16-2012 02:55 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:11 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration