-
Notifications
You must be signed in to change notification settings - Fork 12
Description
Problem...
We have the ability to install the components we've created so far but some recent experimentation has raised the issue of requiring a method to update PIP installed packages.
Cause...
Yesterday I was testing out Simple Diffusion and everything was going wrong. It turned out that a few packages had updated and this was causing the AI model to break (took some hunting down). Basically there was a new version of diffusers (component coming soon) which has a dependancy (transformers - coming soon) which had also been updated.
Solution...
We need a way to version check installed packages and compare them to current packages on pip so we can see if any need updating. Then if required update any packages that need it. Note that this process should be optional (you may purposely want to keep some older packages)
Next...
I'll have a play with it to see what we can do with current components.
GetPIP probably needs the ability to be called with the --upgrade switch