Home

Awesome

test_python

python test code

开发环境

离线安装

  1. 下载一个Python嵌入版,例如Python3.7.7
  2. 下载get-pip.py
  3. 用解压目录的python.exe执行get-pip.py
  4. 修改解压目录下的python37._pth, 把import site注释打开
  5. 用解压目录的Scripts\pip安装其他包
  6. 拷贝整个python目录即可

打包

pyinstaller

使用pyinstaller

    pyinstaller -F -c 1.py

参数说明:

打包异常情况处理

如果出现No module named ‘pkg_resources.py2_warn’错误,可以加入--hidden-import命令行参数.

pyinstaller -F -c --add-binary "C:\Program Files\Python\Python37\Lib\site-packages\landslide\themes;landslide\themes" --hidden-import="pkg_resources.py2_warn" .\test_http.py

使用ipython作为shell程序

把ipython脚本存成1.ipy文件,如

curdir = %pwd
%pushd ..
files = !dir /b
for f in files:
  print(f)
%popd

然后运行

python -m IPython 1.ipy

常用ipython指令

更多Python示例代码

https://github.com/gto76/python-cheatsheet