Thanks a lot, the workaround did work for me. My installation : - reverse proxy on a Mac M1 (Traefik) - galene on a raspberry PI with 64 bit OS running with ./galene -insecure -turn :1194 - everything behind an internet box (Free pop) with ports 8443 and 1194 forwarded to the RPI 80 and 443 to the Mac M1 All the best, Fabrice. ------------------------- Fabrice Rouillier fabrice@rouillier.fr Bureau virtuel : http://visio-fabrice.rouillier.fr > Le 25 avr. 2022 à 10:51, Toke Høiland-Jørgensen a écrit : > > Fabrice Rouillier writes: > >> Hi all, >> >> Having difficulties to compile on a raspberry with the new arm 64 bit >> kernel : Linux rpi 5.15.34-v8+ #1545 SMP PREEMPT Fri Apr 22 11:31:40 >> BST 2022 aarch64 GNU/Linux >> >> go version : go1.15.15 linux/arm64 >> >> Got the following message : >> >> go: github.com/pion/ice/v2@v2.2.6: parsing /home/pion/ice/go.mod: open >> /home/pion/ice/go.mod: no such file or directory > > Looks like commit 9ab84741d987 ("Update dependencies.") snuck in a > hard-coded path to pion (from a development version?). Removing the last > line of go.mod (the line that starts with 'replace') and then running > 'go mod download github.com/pion/ice/v2' before building fixed it for > me... > > -Toke