English | 中文 | 日本語 | 正體中文 | Tiếng Việt
Gopeed(全稱 Go Speed),是一款使用Golang+Flutter編寫的高速下載軟體,支援(HTTP、BitTorrent、Magnet、ED2K)協定,同時支援所有的平台。
| 🪟 Windows | EXE |
amd64 | 📥 |
Portable |
amd64 | 📥 | |
| 🍎 MacOS | DMG |
universal | 📥 |
| amd64 | 📥 | ||
| arm64 | 📥 | ||
| 🐧 Linux | Flathub |
amd64 | 📥 |
SNAP |
amd64 | 📥 | |
DEB |
amd64 | 📥 | |
| arm64 | 📥 | ||
AppImage |
amd64 | 📥 | |
| arm64 | 📥 | ||
| 🤖 Android | APK |
universal | 📥 |
| armeabi-v7a | 📥 | ||
| arm64-v8a | 📥 | ||
| x86_64 | 📥 | ||
| 📱 iOS | IPA |
universal | 📥 |
| 🐳 Docker | - | universal | 📥 |
| 💾 Qnap | QPKG |
amd64 | 📥 |
| arm64 | 📥 | ||
| 🌐 Web | Windows |
amd64 | 📥 |
| arm64 | 📥 | ||
| 386 | 📥 | ||
MacOS |
amd64 | 📥 | |
| arm64 | 📥 | ||
Linux |
amd64 | 📥 | |
| arm64 | 📥 | ||
| 386 | 📥 |
更多關於安裝的內容請參考安裝文檔
使用go install安裝:
go install github.com/GopeedLab/gopeed/cmd/gopeed@latest關注公眾號獲取項目最新動態和資訊。
如果你認為該項目對你有所幫助,請考慮贊助以支持該項目的持續發展,謝謝!
該項目分為前端與後端,前端使用flutter編寫,後端使用Golang編寫,兩邊通過http協定進行通訊,在 unix 系統下,則使用unix socket,在 windows 系統下,則使用tcp協定。
前端代碼位於
ui/flutter目錄內。
- Golang 1.24+
- Flutter 3.38+
git clone git@github.com:GopeedLab/gopeed.git請參考協助指南
首先需要按照flutter desktop 官方文檔配置開發環境,並準備好cgo環境,具體方法可以自行搜索。
組建指令:
- windows
go build -tags nosqlite -ldflags="-w -s" -buildmode=c-shared -o ui/flutter/windows/libgopeed.dll github.com/GopeedLab/gopeed/bind/desktop
cd ui/flutter
flutter build windows- macos
go build -tags nosqlite -ldflags="-w -s" -buildmode=c-shared -o ui/flutter/macos/Frameworks/libgopeed.dylib github.com/GopeedLab/gopeed/bind/desktop
cd ui/flutter
flutter build macos- linux
go build -tags nosqlite -ldflags="-w -s" -buildmode=c-shared -o ui/flutter/linux/bundle/lib/libgopeed.so github.com/GopeedLab/gopeed/bind/desktop
cd ui/flutter
flutter build linux需要cgo環境,並安裝gomobile:
go install golang.org/x/mobile/cmd/gomobile@latest
go get golang.org/x/mobile/bind
gomobile init組建指令:
- android
gomobile bind -tags nosqlite -ldflags="-w -s -checklinkname=0" -o ui/flutter/android/app/libs/libgopeed.aar -target=android -androidapi 21 -javapkg="com.gopeed" github.com/GopeedLab/gopeed/bind/mobile
cd ui/flutter
flutter build apk- ios
gomobile bind -tags nosqlite -ldflags="-w -s" -o ui/flutter/ios/Frameworks/Libgopeed.xcframework -target=ios github.com/GopeedLab/gopeed/bind/mobile
cd ui/flutter
flutter build ios --no-codesign組建指令:
cd ui/flutter
flutter build web
cd ../../
rm -rf cmd/web/dist
cp -r ui/flutter/build/web cmd/web/dist
go build -tags nosqlite,web -ldflags="-s -w" -o bin/ github.com/GopeedLab/gopeed/cmd/web該軟體遵循 GPLv3 。

