1
VicYu 2017-05-04 09:16:53 +08:00
你可以尝试一下压缩成 zip 包
``` $ unzip -l example.zip Archive: example.zip Length Date Time Name -------- ---- ---- ---- 8467 11-26-02 22:30 jwzthreading.py -------- ------- 8467 1 file $ ./python Python 2.3 (#1, Aug 1 2003, 19:54:32) >>> import sys >>> sys.path.insert(0, 'example.zip') # Add .zip file to front of path >>> import jwzthreading >>> jwzthreading.__file__ 'example.zip/jwzthreading.py' ``` |
2
zhaixiaohu 2017-05-04 10:50:18 +08:00
你这个问题应该提工单,比较好。
|