Installing on Linux after compiling from source #2128
Replies: 3 comments
-
https://github.com/wez/wezterm/blob/main/ci/deploy.sh encodes the installation logic for various platforms. What I think would be good is to refactor the linux portions so that there is a generic "create an install tree under a target prefix" script, and have the other places call that: eg: |
Beta Was this translation helpful? Give feedback.
-
For any who have also found their way here with issues, I wrote a little post about this after I got it working. https://tjex.net/hacks/installing-wezterm-on-a-raspberry-pi-or-linux-server/ |
Beta Was this translation helpful? Give feedback.
-
I'm also new to the Rust toolchain and I'm having some trouble understanding how to install. I'm on MacOS, and I can build from source and run just fine. I tried running |
Beta Was this translation helpful? Give feedback.
-
This question is more of a sanity/correctness check. I'm not every familair with the rust build toolchain yet.
I was building WezTerm from source for a Raspberry Pi following these instructions and everything compiled and is running correctly (yay!) To install it, I ran
cd target/release/ sudo install wezterm wezterm-gui wezterm-mux-server strip-ansi-escapes /usr/local/bin
Everything seems to be working fine. Is that the right way to go about it? Should I be putting any of the other files (e.g. the libwezterm_dynamic_derive.so) somewhere? Would it make sense to make a PR to add this to the docs? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions