b64b87e2 by 周伟奇

add nuitka

1 parent 96cf5ad8
Showing 1 changed file with 13 additions and 0 deletions
......@@ -70,3 +70,16 @@
```
python py2so.py -i test -e test,main.py
```
### 3. nuitka打包
- test_project可以通过以下方式,打包成可执行文件或文件夹
```shell
nuitka3 --standalone --onefile --output-dir=out --include-package=websockets main.py
```
- 另外一种不打包python环境的方式
```shell
nuitka --standalone --nofollow-imports --include-package=websockets --output-dir=out main.py
```
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!