日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

【python】dist-packages和site-packages的区别

發布時間:2024/4/15 python 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【python】dist-packages和site-packages的区别 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、dist-packages和site-packages的區別

  • sudo apt-get install 安裝的package存放在/usr/lib/python2.7/dist-packages目錄中
  • pip 或者 easy_install安裝的package存放在/usr/local/lib/python2.7/dist-packages目錄中
  • 手動從源代碼安裝的package存放在site-packages目錄中
  • 自己手動升級或安裝的python,通過pip或者easy_install安裝的package存放在/usr/local/lib/python2.7/site-packages?目錄中
  • 非root用戶,通過pip或者easy_install安裝的package存放在~/.local/lib/python2.7/site-packages
  • The dist-packages is a Debian-specific convention that is also present in its derivatives, like Ubuntu. Modules are installed to dist-packages when they come from the Debian package manager into this location:

    /usr/lib/python2.7/dist-packages

    Since?easy_install?and?pip?are installed from the package manager, they also use dist-packages, but they put packages here:

    /usr/local/lib/python2.7/dist-packages

    From the?Debian Python Wiki:

    dist-packages instead of site-packages. Third party Python software installed from Debian packages goes into dist-packages, not site-packages. This is to reduce conflict between the system Python, and any from-source Python build you might install manually.

    This means that if you manually install Python from source, it uses the site-packages directory. This allows you to keep the two installations separate, especially since Debian and Ubuntu rely on the system version of Python for many system utilities.

    ?

    ?二、查看python的庫路徑

    terminal進入python命令行界面

    >>>from distutils.sysconfig import get_python_lib >>>print(get_python_lib())

    ?

    轉載于:https://www.cnblogs.com/gdut-gordon/p/9336067.html

    總結

    以上是生活随笔為你收集整理的【python】dist-packages和site-packages的区别的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。