1. 程式人生 > >Python 模組釋出與安裝

Python 模組釋出與安裝

文章目錄

釋出模組

setup.py 檔案

在模組所在資料夾下新建 setup.py 檔案如下:

from distutils.core import setup

setup(name="檔名", version="版本號", description="模組說明", author="作者", py_modules=['模組py檔案1', '模組py檔案2'
, ... ])

構建模組

python setup.py build	----python2
python3 setup.py build	----python3

生成釋出壓縮包

生成 .tar.gz 格式的壓縮檔案

python setup.py sdist	----python2
python3 setup.py sdist	----python3

安裝模組

解壓縮釋出安裝包

tar -zxvf 檔名.tar.gz

安裝解壓縮檔案

sudo python setup.py install	----python2
sudo python3 setup.py install
----python3