[Tutorial] install Apache + MySQL + Python on Mac OS_MySQL

WBOY
リリース: 2016-06-01 13:07:09
オリジナル
931 人が閲覧しました

pythonApache

my OS version is 10.8.5

last revision: 2014-06-27

here are the instructions:

# download & install XAMPP (you only get 64-bit version for mac)

http://www.apachefriends.org/download.html

# install python 2.7.x (64-bit)

http://www.python.org/download/releases/2.7.7/

# check python bit-version (run the following script in Python)

import struct; print( 8 * struct.calcsize("P"))
ログイン後にコピー

(should print out ‘64′)

# check python version (run the following script in Python)

import sys; print (sys.version)
ログイン後にコピー

(print out ‘2.7.7′ in this moment)

# download mod_wsgi (a bride for Apache and Python)

http://github.com/GrahamDumpleton/mod_wsgi/releases

# install mod_wsgi

make distclean

./configure –with-apxs=/Applications/XAMPP/xamppfiles/bin/apxs –with-python=/Library/Frameworks/Python.framework/Versions/2.7/bin/python

make

sudo make install

# add load wsgi module script in Apache configuration (httpd.conf)

LoadModule wsgi_module modules/mod_wsgi.so

that’s all then you can launch Apache & MySQL in XAMPP now.

good luck! ;-)

[IMPORT!!] the Apache bit-version must be matched with the Python bit-version, or you will get error while Apache trying to launch. They must be both 64-bit version or both 32-bit version.

Tags:Apache,mod_wsgi,MySQL,Python,XAMPP

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!