Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

elixir - phoenix:undefined function Hex.SCM.managers

when runnig

mix phoenix.server
undefined function Hex.SCM.managers/1

is returning. Does anybody know which package should I install? Elixir is in version 1.2.3 and Erlang/OTP 18 Thank you in advance

like image 713
user3620304 Avatar asked Apr 08 '16 06:04

user3620304


1 Answers

It looks like your Hex install is corrupted. Try forcing the installation with mix local.hex --force.

Also you could try manually downloading and installing the latest version.

$ wget http://s3.amazonaws.com/s3.hex.pm/installs/1.1.0/hex-0.11.5.ez
$ mix archive.install hex-0.11.5.ez
like image 66
josemrb Avatar answered Nov 15 '22 09:11

josemrb