-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/jdszekeres/ezl into master
- Loading branch information
Showing
2 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,23 @@ | ||
|
||
# install | ||
### pre-compiled | ||
#### the easy way | ||
* download the latest release | ||
* use as following | ||
```bash | ||
./ezl filename.ezl | ||
``` | ||
### download from source | ||
#### the hard way | ||
* clone the repo | ||
```bash | ||
git clone https://www.github.com/jdszekeres/ezl.git | ||
``` | ||
* install pyinstaller | ||
```bash | ||
pip3 install pyinstaller | ||
``` | ||
* build | ||
``` bash | ||
python3 -m pyinstaller --onefile ezl.py | ||
``` | ||
* your executable is in the dist folder |