johnnovak / illwill

A curses inspired simple cross-platform console library for Nim
Do What The F*ck You Want To Public License
405 stars 25 forks source link

illwill package not being found by nimble #3

Closed ghost closed 5 years ago

ghost commented 5 years ago

I came across Illwill on Reddit and I was going to install it as it looks pretty nice and handy to me but Nimble was unable to install the package.

Output:

PS D:\Programming\Skirmish\PidPad> nimble install illwill
    Prompt: No local packages.json found, download it from internet? [y/N]
    Answer: y
Downloading Official package list
    Success Package list downloaded.
    Prompt: illwill not found in any local packages.json, check internet for updated packages? [y/N]
    Answer: y
Downloading Official package list
    Success Package list downloaded.
       Tip: 4 messages have been suppressed, use --verbose to show them.
     Error: Package not found.

Verbose output:

PS D:\Programming\Skirmish\PidPad> nimble install illwill --verbose
    Reading official package list
    Prompt: illwill not found in any local packages.json, check internet for updated packages? [y/N]
    Answer: y
Downloading Official package list
     Trying https://github.com/nim-lang/packages/raw/master/packages.json
    Success Package list downloaded.
    Reading official package list
     Error: Package not found.

OS: Windows 10 Build 17763 Nim Version: 0.19.4 Nimble Version:

nimble v0.9.0 compiled at 2019-02-01 05:47:11 git hash: e60ab125494a231c6db3c7cd5122868a0d204b58
SolitudeSF commented 5 years ago

illwill is not in the nimble package registry. use nimble install https://github.com/johnnovak/illwill

ghost commented 5 years ago

Aight thank you. Consider this issue as closed although this should be mentioned/edited in the README as it obviously fails with the recommended command nimble install illwill.