You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,25 @@ go build
130
130
go install
131
131
```
132
132
133
+
### Building in Termux
134
+
The prebuilt `Linux_Arm64` binaries won't work in Termux for Android, so you have to build it yourself.
135
+
You can follow the same build steps as above, but install `git` and `golang` via `pkg`.
136
+
137
+
If you want to use `go install`, make sure to add `GOPATH/bin` to your `PATH`:
138
+
```bash
139
+
# Create or open .bashrc
140
+
nano ~/.bashrc
141
+
142
+
# Add the following line in order to include GOPATH/bin in your $PATH
143
+
export PATH=$PATH:$(go env GOPATH)/bin
144
+
145
+
# Save and exit with Ctrl+X, then Y and Enter
146
+
147
+
# Restart your session or apply changes to your current session with:
148
+
source~/.bashrc
149
+
150
+
```
151
+
133
152
## Installation with Nix
134
153
135
154
`immich-go` is packaged with [nix](https://nixos.org/) and distributed via [nixpkgs](https://search.nixos.org/packages?channel=unstable&type=packages&query=immich-go).
0 commit comments