toxygen/docs/compile.md

20 lines
304 B
Markdown
Raw Permalink Normal View History

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