toxygen/docs/compile.md

20 lines
304 B
Markdown
Raw Permalink Normal View History

2016-07-27 14:53:50 +00:00
# Compile Toxygen
2016-04-30 10:06:07 +00:00
You can compile Toxygen using [PyInstaller](http://www.pyinstaller.org/)
2016-05-13 09:08:45 +00:00
2022-09-27 12:52:32 +00:00
Use Dockerfile and build script from `build` directory:
2016-04-30 10:06:07 +00:00
2022-09-27 12:52:32 +00:00
1. Build image:
```
docker build -t toxygen .
```
2016-04-30 10:06:07 +00:00
2022-09-27 12:52:32 +00:00
2. Run container:
```
docker run -it toxygen bash
```
3. Execute `build.sh` script:
```./build.sh```