We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've recently come across a few similar problems across Julia packages. The problems have the following distinguishing form:
Package X requires package Y. X is installed via ]add X and as a result, Y is installed and added to Manifest.toml.
]add X
Manifest.toml
The error occurs when we try to use some package X functionality which depends on Y. Either Y cannot be found or it crashes.
The error can be resolved by explicitly ]add Y to the project.
]add Y
Examples:
Missing package dependency #619
Logistic Regression example does not run in Docker container malmaud/TensorFlow.jl#439
FileWriter cannot find MacroTools malmaud/TensorFlow.jl#446
FileWriter
Cannot use radau unless ODEInterface is in Project.toml SciML/ODEInterfaceDiffEq.jl#12
radau
ODEInterface
Project.toml
The text was updated successfully, but these errors were encountered:
The last example is probably just an issue with ODEInterface which looks like a mess. In particular https://github.com/luchr/ODEInterface.jl/blob/384de232de89d5e4688f03166c934348829ea543/src/DLSolvers.jl#L102-L127 could use just @__DIR__ or something unless I miss something...
@__DIR__
Sorry, something went wrong.
malmaud/TensorFlow.jl#439 and malmaud/TensorFlow.jl#446 seems to be related to JuliaLang/julia#28781 so I don't think there is any reason to leave this issue open? Comment otherwise.
No branches or pull requests
I've recently come across a few similar problems across Julia packages. The problems have the following distinguishing form:
Package X requires package Y. X is installed via
]add X
and as a result, Y is installed and added toManifest.toml
.The error occurs when we try to use some package X functionality which depends on Y. Either Y cannot be found or it crashes.
The error can be resolved by explicitly
]add Y
to the project.Examples:
Missing package dependency #619
Logistic Regression example does not run in Docker container malmaud/TensorFlow.jl#439
FileWriter
cannot find MacroTools malmaud/TensorFlow.jl#446Cannot use
radau
unlessODEInterface
is inProject.toml
SciML/ODEInterfaceDiffEq.jl#12The text was updated successfully, but these errors were encountered: