Mirror of
forum.nim-lang.org
index
6847 :: How Can I Use The Packages I installed With Nimble?
[2020-09-21T20:20:52+02:00]
View Orginal
nhuman
(orginal)
[2020-09-21T20:20:52+02:00]
view original
I'm trying to use fidget, I ran
nimble install fidget
Run
but when I try to import the package it says fidget file not found or sth like that. How can I fix that?
dom96
(orginal)
[2020-09-21T21:04:41+02:00]
view original
How are you compiling your code? If you're using
nimble c
then you need a
requires "fidget"
in your .nimble file. Compiling using
nim c
should work.