File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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-
20191 . Install the dependencies:
2120
2221``` bash
2322pip 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
You can’t perform that action at this time.
0 commit comments