Mix deps.get fails with a :timeout

Hi, I’m having a very weird issue, mix deps.get fails with a timeout

It’s only conform, all other dependencies are just fine.
What’s funny is that when I try to download the file linked by mix it downloads just fine with no issues at all. I’ve tried to change version and it still timeouts for 2.1.0
Can someone help me?

ngw

I experience a lot of timeouts, too, I live in West Africa :stuck_out_tongue:

Try this

cd ~/.hex/packages/hexpm/; \
  wget -c --show-progress https://repo.hex.pm/tarballs/conform-2.1.1.tar; \
  cd -; \
  mix deps.get

(or manually copy the package you’ve downloaded to ~/.hex/packages/hexpm/)

2 Likes