Jason Martens
Jason Martens
I am experiencing this problem running the registry on CoreOS. The first time I run the registry and it has to pull from the registry image from the docker public...
Same problem here, full build output: ``` jason@Jasons-Air-379 atproto % make deps yarn install --frozen-lockfile yarn install v1.22.19 [1/5] 🔍 Validating package.json... [2/5] 🔍 Resolving packages... [3/5] 🚚 Fetching packages......
Hm, at least one problem seems to be that python3.11 has a bug/issue with node gyp: https://stackoverflow.com/questions/74715990/node-gyp-err-invalid-mode-ru-while-trying-to-load-binding-gyp Uninstalling brew python3 (which was 3.11) and using system default 3.9 python fixed...
Eventually discovered you need python 2 and 3, so install `pyenv` and set both versions: pyenv install 3.9.16 pyenv install 2.7.18 pyenv global 3.9.16 2.7.18 Then run `make dep` again