Python Install
By Mr.Seiko on Sep 30, 2015 | In Uncategorized
Fucking around on a CentOS 6 Server. Client wanted a Python 3.4 install.
1. sudo yum install https://dl.iuscommunity.org/pub/ius/stable/CentOS/6/x86_64/ius-release-1.0-14.ius.centos6.noarch.rpm
2. sudo yum search python3
--Found Python appears as python34u so installed it
3. sudo yum install python34u
Then they wanted a few things installed by pip, a Python Package manager.
Should just be pip install but that was returning an error that pip didn't exist.
Seems that by default pip is different, so I had to
4. pip3 install --upgrade pip
This updated pip-6.0.8 to pip-7.1.2 and I was able to use pip install commands with latest version.
Overall pretty easy process.
No feedback yet
| « XMLRPC Attack | Kali » |