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

WBOY
发布: 2016-06-01 13:07:09
原创
932 人浏览过

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学习者快速成长!