Python Forum
Thread Rating:
  • 3 Vote(s) - 2.33 Average
  • 1
  • 2
  • 3
  • 4
  • 5
rpm of 3.6
#1
does anyone know of an RPM of Python 3.6 (or 3.6.X) for RedHat Linux or CentOS Linux around that can be download (for someone that has no means to compile source) ?
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply
#2
Will this site help? Python RPM
If it ain't broke, I just haven't gotten to it yet.
OS: Windows 10, openSuse 42.3, freeBSD 11, Raspian "Stretch"
Python 3.6.5, IDE: PyCharm 2018 Community Edition
Reply
#3
Use pyenv then installing new versions and switch between version become very simple.
I have a tutorial of setup pyenv here.

I want install Python 3.6.2,i have already used 3.6.1 since it come out.
mint@mint ~ $ pyenv install 3.6.2
Downloading Python-3.6.2.tar.xz...
-> https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tar.xz
Installing Python-3.6.2...
Installed Python-3.6.2 to /home/mint/.pyenv/versions/3.6.2
Setting it as global python.
int@mint ~ $ pyenv global 3.6.2
mint@mint ~ $ python
Python 3.6.2 (default, Jul 20 2017, 14:21:59) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 
That's all,and it very safe don't mess up system version of Python.
Say i want to go back to Mint 18.1 default Python versions.
mint@mint ~ $ pyenv local system
mint@mint ~ $ python
Python 2.7.12 (default, Nov 19 2016, 06:48:10) 
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 
mint@mint ~ $ python3
Python 3.5.2 (default, Nov 17 2016, 17:05:23) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
Reply
#4
(Jul-20-2017, 03:00 AM)Skaperen Wrote: does anyone know of an RPM of Python 3.6 (or 3.6.X) for RedHat Linux or CentOS Linux around that can be download (for someone that has no means to compile source) ?
Isn't there a python3 available through yum? I don't normally use hat-based distros (RedHat/Fedora), but I think the syntax is sudo yum install python3.
Reply
#5
(Jul-21-2017, 04:19 PM)nilamo Wrote: Isn't there a python3 available through yum?  I don't normally use hat-based distros (RedHat/Fedora), but I think the syntax is sudo yum install python3.
yes, but best that is available for download as an RPM is 3.5.2. this is for a hat-based system with 3.5.1 in its repository.
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply
#6
Hm! I am running Arch now and it comes with the last stable Python version - 3.6.1. A few days ago still 3.6.1 when I was updating my system. Version 3.6.2 considering stable was out at that time.
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020