2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

python2.7 開発環境構築

Last updated at Posted at 2013-05-04

head -n1 /etc/issue

CentOS release 6.4 (Final)

yum install python-setuptools
easy_install pip
pip freeze

distribute==0.6.10
iniparse==0.3.1
pycurl==7.19.0
pygpgme==0.1
urlgrabber==3.9.1
yum-metadata-parser==1.1.2

pip install ipython
pip install virtualenv
virtualenv --python /usr/local/bin/python2.7 --no-site-pakages ~/virtualenv/python27

開発環境へ切替
source ~/virtualenv/python27/bin/activate
pip freeze

wsgiref==0.1.2

開発環境から抜ける
deactivate
pip freeze

distribute==0.6.10
iniparse==0.3.1
ipython==0.13.2
pycurl==7.19.0
pygpgme==0.1
urlgrabber==3.9.1
virtualenv==1.9.1
yum-metadata-parser==1.1.2

wget http://peak.telecommunity.com/dist/ez_setup.py
python2.7 ./ez_setup.py

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?