首頁  >  文章  >  資料庫  >  [Tutorial] install Apache + MySQL + Python on Mac OS_MySQL

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

WBOY
WBOY原創
2016-06-01 13:07:09933瀏覽

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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn