Quero baixar o Python3.6, mas não está baixando

0

Como baixar o python 3.6 para o opensuse linux.

Por favor, diga-me passo a passo como sou novo nisso.

Eu tento baixá-lo usando o yum, mas ele não está baixando, então tento baixá-lo usando o YaST, ele diz, mude sua URL. Eu já tenho Python versão 2.7.5 no meu sistema, bem como 3.3 também é baixado.

Por favor, também tome seu tempo para explicar:

Em que diretório devo fazer o download?

Após o download do python3.6, eu quero baixar o anaconda e, para esse 3.6, a versão do Python é necessária, então como acessar a versão 3.6 do Python, em vez de outras versões.

Yum code on terminal:

 yum install python

wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz

tar -xvzf Python-3.5.2.tgz

cd Python-3.5.2

 ./configure --prefix=/usr/bin

 make altinstall

Como eu adiciono o repositório no tipo de mídia https do YaST:

URL of the repository:https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz

Repository name: Python

Error of using YUM command: on usr/bin directory I try to run python3.6:

mysys:/usr/bin/Python-3.6.0 # python3.6
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Python 3.6.0 (default, Feb  1 2018, 10:59:47) 
[GCC 4.8.1 20130909 [gcc-4_8-branch revision 202388]] on linux
Type "help", "copyright", "credits" or "license" for more information.
Traceback (most recent call last):
  File "/etc/pythonstart", line 7, in <module>
    import readline
ModuleNotFoundError: No module named 'readline'

No diretório inicial:

mysys:/home> python3.3
Python 3.3.2 (default, Jun 13 2013, 16:05:31) [GCC] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 
[1]+  Stopped                 python3.3
mysys:/home> python3.6
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Python 3.6.0 (default, Feb  1 2018, 10:59:47) 
[GCC 4.8.1 20130909 [gcc-4_8-branch revision 202388]] on linux
Type "help", "copyright", "credits" or "license" for more information.
Traceback (most recent call last):
  File "/etc/pythonstart", line 7, in <module>
    import readline
ModuleNotFoundError: No module named 'readline'
>>> 

Eu sirvo quase um mês para baixá-lo e depois de tanto esforço estou postando aqui. Agradeço antecipadamente.

    
por Rhea 01.02.2018 / 05:37

1 resposta

0

Jani Karhunen tem um processo para instalar o python 3.6 .

Essencialmente:

Verifique se seus yum utils estão atualizados:

  • sudo yum update
  • sudo yum install yum-utils
  • sudo yum groupinstall development

Instale o repositório IUS:

  • sudo yum install https://centos7.iuscommunity.org/ius-release.rpm

Em seguida, instale o python 3.6:

  • sudo yum install python36u
por 01.02.2018 / 08:26

Tags