Debugging Warning: Package Base does not have Parameters in its dependencies:

I am trying to make my own package with PkgTemplates and I get the following error

julia> using InformationJobSearch
[ Info: Precompiling InformationJobSearch [ae686e5f-2e63-48c8-ad06-f757a7909ed6]
┌ Warning: Package Base does not have Parameters in its dependencies:
│ - If you have Base checked out for development and have
│   added Parameters as a dependency but haven't updated your primary
│   environment's manifest file, try `Pkg.resolve()`.
│ - Otherwise you may need to report an issue with Base
└ Loading Parameters into Base from project dependency, future warnings for Base are suppressed.

ERROR: LoadError: UndefVarError: include not defined

Using resolve doesn’t fix the error. Neither does deleting the registry, nor does instantiate

Any tips on what to try next?

It’s taking the first package listed in using and thinking that Base needs to have it in its dependencies. i.e. if I pus using Markdown first, the same error pops up for for Markdown instead of Parameters

1 Like

Remember to use module and have all your code be in that…

3 Likes