Skip to content

Commit 0bb0b77

Browse files
authored
Update README.md
1 parent 0df5fa3 commit 0bb0b77

1 file changed

Lines changed: 31 additions & 1 deletion

File tree

README.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,44 @@ NekoShare File Transfer is a file transfer application for Desktop PC that allow
1616
- pip
1717

1818
### Installation
19-
2019
1. Install the dependencies:
2120

2221
```bash
2322
pip install -r requirements.txt
2423
```
2524

25+
2. Run the code:
26+
27+
```bash
28+
python nekoshare-portable.py
29+
```
30+
2631
### Development
32+
1. Build for Windows .exe:
33+
34+
```bash
35+
pyinstaller --onefile --windowed --icon="assets/icon.ico" --add-data "assets;assets" --name "NekoShare File (Desktop) Portable Win x64" nekoshare-portable.py
36+
```
37+
38+
2. Package Directory Structure .deb:
39+
40+
```
41+
Linux/nekoshare-portable-v1.0.0-x64/
42+
├── DEBIAN/
43+
│ └── control
44+
└── usr/
45+
├── bin/
46+
│ └── nekoshare
47+
└── share/
48+
└── applications/
49+
│ └── nekoshare.desktop
50+
└── pixmaps/
51+
└── nekoshare.png
52+
```
53+
Build the package on Linux Terminal
54+
```bash
55+
dpkg-deb --build nekoshare-portable-v1.0.0-x64
56+
```
2757

2858

2959
## Screenshot

0 commit comments

Comments
 (0)