Python模块的安装路径

Python的强大,其中一个重要原因是Python有很丰富的库(模块)从而可以比较方便地处理各种各样的问题。
Python的第三方modules一般都安装在一些固定的路径,如下:
Unix(Linux): prefix/lib/pythonX.Y/site-packages 默认路径:/usr/local/lib/pythonX.Y/site-packages
Windows: prefix\Lib\site-packages 默认路径:C:\PythonXY\Lib\site-packages
另外,在Unix-like系统上,Python自身build-in的模块一般位于:/usr/lib/pythonX.Y/site-packages
从源代码安装模块的命令一般为:setup.py install
当然,可以根据需要改变默认的第三方模块安装路径,在命令中可以加上参数:--user, or --home, or --prefix and --exec-prefix, or --install-base and --install-platbase 等来指定安装路径。
需要注意的是:模块的安装路径一定要在 sys.path 这个List中,才能在脚本中可以正常地 import 进来。

关于模块的装, Python官方参考文档是:
http://docs.python.org/3.3/install/index.html#how-installation-works

另外,在Debian系列(包括Ubuntu)的Linux上,一般采用 dist-packages 而不是采用 site-packages 目录;Debian项目的网站上,也对此作了说明,详见:
http://wiki.debian.org/Python#Deviations_from_upstream

下面是我的系统上看到的Python模块的一些路径:

master

Stay hungry, stay foolish.

发表评论

邮箱地址不会被公开。 必填项已用*标注

*