We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e33dd87 commit 7dbe0bbCopy full SHA for 7dbe0bb
README.md
@@ -1,2 +1,21 @@
1
-# binpython
+# BINPython
2
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
11
+pip install pyinstaller
12
13
+3. Compile with basic pyinstaller, e.g.
14
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