python3第三方模块安装路径_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模块的一些路径:

Python

# 在一台RHEL6.3 x86-64系统上

[root@jay-linux ~]# cat /etc/issue

Red Hat Enterprise Linux Server release 6.3 (Santiago)

Kernel \r on an \m

[root@jay-linux ~]# ls /usr/lib/python2.6/site-packages/

[root@jay-linux ~]# ls /usr/lib64/python2.6/site-packages/

[root@jay-linux ~]# ls /usr/local/lib64/python2.6/site-packages/

# 切换到一台Ubuntu x86-64系统上

master@jay-intel:~$ cat /etc/issue

Ubuntu 12.04.1 LTS \n \l

master@jay-intel:~$ ls /usr/lib/python2.7/dist-packages/

master@jay-intel:~$ ls /usr/local/lib/python2.7/dist-packages/

easy-install.pth mysql_connector_repackaged-0.3.1-py2.7.egg

master@jay-intel:~$ python3

Python 3.2.3 (default, Oct 19 2012, 20:10:41)

[GCC 4.6.3] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> import sys

>>> sys.path

['', '/usr/local/lib/python3.2/dist-packages/mysql_connector_repackaged-0.3.1-py3.2.egg', '/usr/lib/python3.2', '/usr/lib/python3.2/plat-linux2', '/usr/lib/python3.2/lib-dynload', '/usr/local/lib/python3.2/dist-packages', '/usr/lib/python3/dist-packages']

>>>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

# 在一台RHEL6.3 x86-64系统上

[root@jay-linux~]# cat /etc/issue

RedHatEnterpriseLinuxServerrelease6.3(Santiago)

Kernel\ronan\m

[root@jay-linux~]# ls /usr/lib/python2.6/site-packages/

[root@jay-linux~]# ls /usr/lib64/python2.6/site-packages/

[root@jay-linux~]# ls /usr/local/lib64/python2.6/site-packages/

# 切换到一台Ubuntu x86-64系统上

master@jay-intel:~$cat/etc/issue

Ubuntu12.04.1LTS\n\l

master@jay-intel:~$ls/usr/lib/python2.7/dist-packages/

master@jay-intel:~$ls/usr/local/lib/python2.7/dist-packages/

easy-install.pthmysql_connector_repackaged-0.3.1-py2.7.egg

master@jay-intel:~$python3

Python3.2.3(default,Oct192012,20:10:41)

[GCC4.6.3]onlinux2

Type"help","copyright","credits"or"license"formoreinformation.

>>>importsys

>>>sys.path

['','/usr/local/lib/python3.2/dist-packages/mysql_connector_repackaged-0.3.1-py3.2.egg','/usr/lib/python3.2','/usr/lib/python3.2/plat-linux2','/usr/lib/python3.2/lib-dynload','/usr/local/lib/python3.2/dist-packages','/usr/lib/python3/dist-packages']

>>>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值