Skip to content

Commit 7dbe0bb

Browse files
authored
Update README.md
1 parent e33dd87 commit 7dbe0bb

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,21 @@
1-
# binpython
1+
# BINPython
22
Lightweight and small portable Python, build with pyinstaller
3+
# Build
4+
1. Clone this project
5+
```bash
6+
git clone https://github.com/xingyujie/binpython
7+
cd binpython
8+
```
9+
2. Install Python, pip and the pyinstaller environment
10+
```bash
11+
pip install pyinstaller
12+
```
13+
3. Compile with basic pyinstaller, e.g.
14+
```bash
15+
pyinstaller -F binpython.py
16+
```
17+
(You can also use more compilation parameters, see pyinstaller documentation for details)
18+
19+
4. Switch to the dist directory and find the compiled executable file, such as exe or bin file
20+
# Use
21+
Under most Unix-like systems, run "./binpython" to run, double-click to run under Windows

0 commit comments

Comments
 (0)