CentOS7にPython2.7.4、pip環境を作る方法

1.pythonのインスントール
#!/bin/bash
#ソースパッケージのインスントール
wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz
tar -zxvf Python-2.7.9.tgz
cd Python-2.7.9

#コンパイルのインスントール
./configure
make
make install
2.pipのインスントール
#!/bin/bash
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
3.startnews24_test.py
サンプルコード:
#!/usr/bin/env python
# -*- coding:utf8-*-

print 'welcome to startnews24’
print('welcome to startnews24’)

print 'startnews24′,’com’
name = raw_input()

実行
python startnews24_test.py

Python

Posted by arkgame