Openuse Linux用Python 3.6をダウンロードする方法。
yumを使ってダウンロードしようとしましたが、ダウンロードされませんでした。 YaSTを使用してダウンロードしようとしましたが、URLを変更するように求められます。私のシステムにはすでにPythonバージョン2.7.5がインストールされており、バージョン3.3もダウンロードしています。
どのディレクトリにダウンロードする必要がありますか?
python3.6をダウンロードした後、anacondaをダウンロードしたいのですが、3.6 Pythonバージョンが必要ですが、他のバージョンではなく3.6 Pythonバージョンにどのようにアクセスできますか?
ターミナルのYumコード:
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
YaST httpsメディアタイプにリポジトリを追加するには:
URL of the repository:https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz
Repository name: Python
YUMコマンドの使用中にエラーが発生しました:usr / binディレクトリで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'
ホームディレクトリから:
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'
>>>
ベストアンサー1
ジャニー・カルフネンはPython 3.6のインストールプロセス。
基本的に:
yum
ユーティリティが最新であることを確認してください。
sudo yum update
sudo yum install yum-utils
sudo yum groupinstall development
IUSリポジトリをインストールします。
sudo yum install https://centos7.iuscommunity.org/ius-release.rpm
次に、Python 3.6をインストールします。
sudo yum install python36u