Error: Failed with error: No such Project : polymod

Viewed 2101

I am trying to make a Friday Night Funkin' mod, but when I compile it, this error shows up:

Error: Could not find haxelib "polymod", does it need to be installed?

So of course I tried to install it, but then this showed up:

Error: Failed with error: No such Project : polymod

Btw I used this command to (at least try) to install polymod:

haxelib install polymod

Thanks

3 Answers

The library is not published to lib.haxe.org, which is why haxelib install doesn't work. According to the official build instructions, the correct command is:

haxelib git polymod https://github.com/larsiusprime/polymod.git

Or if you're using Lix it's be :)

lix install gh:larsiusprime/polymod

As of a few weeks ago, Polymod is now available on HaxeLib.

The following command (which previously did not work) is now the CORRECT way to install Polymod:

haxelib install polymod
Related