2016-07-27 14:53:50 +00:00
|
|
|
# Compile Toxygen
|
2016-05-05 23:00:10 +00:00
|
|
|
|
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```
|