Reputation: 1
I am in windows, when I go to the command prompt and type elm package install elm-lang/html I get the message "There is no package command" I have no idea why, my other elm commands work in this command prompt.
Upvotes: 0
Views: 184
Reputation: 704
There is missing a -
in your command. Depending on your version, you should use:
elm-package install elm-lang/html
or if in the latest version:
elm install elm/html
Upvotes: 0