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
Since apps can now define their own requirements, you will inevitably end up with conflicts.
There is no great solution to this, but one thing that would make sense to me is: whenever you update the aiidalab app registry, also run a job that
Ideally, step 2 could be done without actually having to install those requirements.
@csadorf mentioned one could try this with a Pipfile
Pipfile
Otherwise there is pip check but I think that only works if you actually install all of the apps.
pip check
P.S. There is also pip download which does the same resolution as pip install but just downloads the packages (and should thus be faster)
pip download
pip install
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since apps can now define their own requirements, you will inevitably end up with conflicts.
There is no great solution to this, but one thing that would make sense to me is:
whenever you update the aiidalab app registry, also run a job that
Ideally, step 2 could be done without actually having to install those requirements.
@csadorf mentioned one could try this with a
Pipfile
Otherwise there is
pip check
but I think that only works if you actually install all of the apps.P.S. There is also
pip download
which does the same resolution aspip install
but just downloads the packages (and should thus be faster)The text was updated successfully, but these errors were encountered: