web-dev-qa-db-ja.com

Linux SUSEまたはRedHatでは、Python 2.7

SUSEおよびRedHatにpythonバージョン2.7をインストールするために必要な手順を誰かが提供できますか?そこにあるバージョンは2.4で、スクリプトを機能させるには少なくとも2.6が必要です。したがって、インストール後、xTermでPythonと入力して、Python 2.7コマンドラインインターフェイスを取得できます。

59
Dag

ソースをダウンロードしてインストールする手順:

https://www.python.org/download/

注:頻繁に更新されるため、python 2.7.xの最新バージョンを確認する必要があります。現在(2017年10月)、このコメントは古くなりますが、新しいバージョンは6か月ごとにリリースされる可能性があります。

wget https://www.python.org/ftp/python/2.7.14/Python-2.7.14.tgz # Download
tar xvfz Python-2.7.14.tgz # unzip
cd Python-2.7.14 # go into directory
./configure
make # build
su # or 'Sudo su' if there is no root user
make altinstall

(編集:make install-> Ignacioのコメントごとにaltinstallを作成)。

127
dr jimbob

RHEL 6.2 using(had Python 2.6、i need Python 2.7.)だから:

$ Sudo sh -c 'wget -qO- http://people.redhat.com/bkabrda/scl_python27.repo >> /etc/yum.repos.d/scl.repo'

$ yum search python27
Loaded plugins: Amazon-id, rhui-lb, security
scl_python27                                                                                                                                      | 2.9 kB     00:00     
scl_python27/primary_db                                                                                                                           |  38 kB     00:00     
========================================================================= N/S Matched: python27 =========================================================================
python27.i686 : Package that installs python27
python27.x86_64 : Package that installs python27
python27-expat-debuginfo.i686 : Debug information for package python27-expat
python27-expat-debuginfo.x86_64 : Debug information for package python27-expat
python27-python-coverage-debuginfo.i686 : Debug information for package python27-python-coverage
python27-python-coverage-debuginfo.x86_64 : Debug information for package python27-python-coverage
python27-python-debuginfo.i686 : Debug information for package python27-python
python27-python-debuginfo.x86_64 : Debug information for package python27-python
python27-python-markupsafe-debuginfo.i686 : Debug information for package python27-python-markupsafe
python27-python-markupsafe-debuginfo.x86_64 : Debug information for package python27-python-markupsafe
python27-python-simplejson-debuginfo.i686 : Debug information for package python27-python-simplejson
python27-python-simplejson-debuginfo.x86_64 : Debug information for package python27-python-simplejson
python27-python-sqlalchemy-debuginfo.i686 : Debug information for package python27-python-sqlalchemy
python27-python-sqlalchemy-debuginfo.x86_64 : Debug information for package python27-python-sqlalchemy
python27-runtime.i686 : Package that handles python27 Software Collection.
python27-runtime.x86_64 : Package that handles python27 Software Collection.
python27-babel.noarch : Tools for internationalizing Python applications
python27-build.i686 : Package shipping basic build configuration
python27-build.x86_64 : Package shipping basic build configuration
python27-expat.i686 : An XML parser library
python27-expat.x86_64 : An XML parser library
python27-expat-devel.i686 : Libraries and header files to develop applications using expat
python27-expat-devel.x86_64 : Libraries and header files to develop applications using expat
python27-expat-static.i686 : expat XML parser static library
python27-expat-static.x86_64 : expat XML parser static library
python27-python.i686 : An interpreted, interactive, object-oriented programming language
python27-python.x86_64 : An interpreted, interactive, object-oriented programming language
python27-python-babel.noarch : Library for internationalizing Python applications
python27-python-coverage.i686 : Code coverage testing module for Python
python27-python-coverage.x86_64 : Code coverage testing module for Python
python27-python-debug.i686 : Debug version of the Python runtime
python27-python-debug.x86_64 : Debug version of the Python runtime
python27-python-devel.i686 : The libraries and header files needed for Python development
python27-python-devel.x86_64 : The libraries and header files needed for Python development
python27-python-docutils.noarch : System for processing plaintext documentation
python27-python-jinja2.noarch : General purpose template engine
python27-python-libs.i686 : Runtime libraries for Python
python27-python-libs.x86_64 : Runtime libraries for Python
python27-python-markupsafe.i686 : Implements a XML/HTML/XHTML Markup safe string for Python
python27-python-markupsafe.x86_64 : Implements a XML/HTML/XHTML Markup safe string for Python
python27-python-nose.noarch : Discovery-based unittest extension for Python
python27-python-nose-docs.noarch : Nose Documentation
python27-python-pygments.noarch : Syntax highlighting engine written in Python
python27-python-setuptools.noarch : Easily build and distribute Python packages
python27-python-simplejson.i686 : Simple, fast, extensible JSON encoder/decoder for Python
python27-python-simplejson.x86_64 : Simple, fast, extensible JSON encoder/decoder for Python
python27-python-sphinx.noarch : Python documentation generator
python27-python-sphinx-doc.noarch : Documentation for python-sphinx
python27-python-sqlalchemy.i686 : Modular and flexible ORM library for python
python27-python-sqlalchemy.x86_64 : Modular and flexible ORM library for python
python27-python-test.i686 : The test modules from the main python package
python27-python-test.x86_64 : The test modules from the main python package
python27-python-tools.i686 : A collection of development tools included with Python
python27-python-tools.x86_64 : A collection of development tools included with Python
python27-python-virtualenv.noarch : Tool to create isolated Python environments
python27-python-werkzeug.noarch : The Swiss Army knife of Python web development
python27-python-werkzeug-doc.noarch : Documentation for python-werkzeug
python27-tkinter.i686 : A graphical user interface for the Python scripting language
python27-tkinter.x86_64 : A graphical user interface for the Python scripting language

  Name and summary matches only, use "search all" for everything.

EDIT:

CentOS 6.x: http://dev.centos.org/centos/6/SCL/x86_64/python27/

$ Sudo sh -c 'wget -qO- http://dev.centos.org/centos/6/SCL/scl.repo >> /etc/yum.repos.d/scl.repo'
$ scl enable python27 'python --version'
python 2.7.5
$ scl enable python27 bash
$ python --version
Python 2.7.5
13
YumYumYum

ジンボブ博士による受け入れられた回答(make altinstallpython2.7 in /usr/local/binしかし、サードパーティのモジュールもいくつかインストールする必要がありました。嬉しいことに、easy_installはPython実行中のバージョンからインストール場所を取得しますが、それでもPython 2.7の場合はeasy_install ImportError: No module named pkg_resources。だから私はこれをやった:

wget http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.Egg
Sudo -i
export PATH=$PATH:/usr/local/bin
sh setuptools-0.6c11-py2.7.Egg
exit

今私が持っています easy_installおよびeasy_install-2.7は/ usr/local/binにあり、前者はシステムの2.6バージョンのeasy_installを上書きするため、削除しました。

Sudo rm /usr/local/bin/easy_install

これで、Pythonのような2.7バージョンのライブラリをインストールできます。

Sudo /usr/local/bin/easy_install-2.7 numpy
7
Rob Fisher

インストールするPython 2.7.2このスクリプトを使用します- https://github.com/bngsudheer/bangadmin/blob/master/linux/centos/6/x86_64/build-python -27.sh

また、sqliteおよびreadlineのサポートを確実に取得できます。

3
Sudheer

以下のコマンドを実行して、yumとpython2.7を機能させます。

yum groupinstall -y development
yum groupinstall -y 'development tools'
yum install -y zlib-dev openssl-devel wget sqlite-devel bzip2-devel
yum -y install gcc gcc-c++ numpy python-devel scipy git boost*
yum install -y *lapack*
yum install -y gcc gcc-c++ make bison flex autoconf libtool memcached libevent libevent-devel uuidd libuuid-devel  boost boost-devel libcurl-dev libcurl curl gperf mysql-devel

cd
mkdir srk
cd srk 
wget http://www.python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz
yum install xz-libs
xz -d Python-2.7.6.tar.xz
tar -xvf Python-2.7.6.tar
cd Python-2.7.6
./configure --prefix=/usr/local
make
make altinstall



echo "export PATH="/usr/local/bin:$PATH"" >> /etc/profile
source /etc/profile
mv /usr/bin/python /usr/bin/python.bak
update-alternatives --install /usr/bin/python python /usr/bin/python2.6 1
update-alternatives --install /usr/bin/python python /usr/local/bin/python2.7 2
update-alternatives --config python
sed -i "s/python/python2.6/g" /usr/bin/yum
2
Shahrukh Khan

RHEL/CentosにPython 2.4をインストールしたままにしておく必要があります。そうしないと、ツールが破損し始めます。ただし、デュアルインストールを実行できます。

http://thebuild.com/blog/2009/10/17/wordpress-to-djangopostgresql-part-3-installing-Apache-python-2-6-psycopg2-and-mod_wsgi/

投稿は約2.6ですが、2.7にも同様に適用されます。

2
Christophe

Linuxの素晴らしい点は、まだ ソースをダウンロード であり、ほとんどのシステムでは、自分でバージョンをコンパイルするためのすべてのツールを備えていることです。

pythonと入力するだけでxtermからpython cliを取得するには、python binディレクトリがシステムパス変数(- Red Hatの例Suseの例

1
g19fanatic

2.6に対応できる場合、 [〜#〜] epel [〜#〜] はRHEL 5のpython26パッケージに含まれています。ただし、システムを実行するにはpythonを2.4にする必要があるため、python2.6を使用して呼び出す必要があります。

./configureステージで次のようなエラーが表示された場合

configure:エラー: `/home//Downloads/Python-2.7.14 'で:configure:エラー:受け入れ可能なCコンパイラが$ PATHに見つかりません

これを試してください。

pythonのインストール時に$ PATHに許容可能なCコンパイラが見つかりません

0
MonkeyMagic

Pipとセットアップツールが必要な場合は、python2.7を作成する前にopensslとopessl-devlをインストールしてください

 yum install openssl-devel

それから https://stackoverflow.com/a/4149444/429476

次に https://pypi.python.org/pypi/setuptools

wget https://bootstrap.pypa.io/ez_setup.py
python2.7 ez_setup.py

次に、pipをインストールします

wget https://bootstrap.pypa.io/get-pip.py
python2.7 get-pip.py

次に、他のパッケージをインストールするためにpip2.7 install package_name

0
Alex Punnen

Oracle LinuxにPython 2.7をインストールする場合は、次の手順を実行できます。

/etc/yum.repos.d/public-yum-ol6.repoのSoftware Collectionを有効にします。

vim /etc/yum.repos.d/public-yum-ol6.repo

[public_ol6_software_collections] 
name=Software Collection Library release 1.2 packages for Oracle Linux 6 
(x86_64) 
baseurl=[http://yum.Oracle.com/repo/OracleLinux/OL6/SoftwareCollections12/x86_64/][1] 
    gpgkey=file:[///etc/pki/rpm-gpg/RPM-GPG-KEY-Oracle][2] 
    gpgcheck=1 
    enabled=1 <==============change from 0 to 1

Yumリポジトリにこの変更を加えた後、単純にyumコマンドを実行してPythonをインストールできます。

yum install gcc libffi libffi-devel python27 python27-python-devel openssl-devel python27-MySQL-python

次の変数を使用してbash_profileを編集します。

vim ~/.bash_profile
PATH=$PATH:$HOME/bin:/opt/rh/python27/root/usr/bin export PATH
LD_LIBRARY_PATH=/opt/rh/python27/root/usr/lib64 export LD_LIBRARY_PATH
PKG_CONFIG_PATH=/opt/rh/python27/root/usr/lib64/pkgconfig export PKG_CONFIG_PATH

インストールにpython2.7とpipを使用できるようになりましたPythonモジュール:

/opt/rh/python27/root/usr/bin/pip install pynacl
/opt/rh/python27/root/usr/bin/python2.7 --version
0
Adriano R P L