Export item dependent Python / export all installed modules / packed data

A project to export-dependent module and installation

# Install module pipreqs
# Packing dependence: Move to the root directory of the console project execution pipreqs ./ --encoding = utf8
# Installation depends: pip install -r requriements.txt

II. Export of all modules installed

#cd to export directory: pip3 freeze> package.txt
# Installation: pip install -r package.txt perform the directory

III. Packaging data

Reference 1
Reference 2

 

Guess you like

Origin www.cnblogs.com/3sss-ss-s/p/10958262.html