-
Notifications
You must be signed in to change notification settings - Fork 559
Error when installing websocket dependency for different plugins #218
Description
Hello, guys, I did not find this error at the GitHub repo issues. Therefore, I seeking for some help.
- The AutgoGPT version that I am working with is Release v0.4.5.
- I moved all the plugins zipped folders and also plugin unzipped folders from the AutoGPT/plugin folder to another folder, and I executed ./run.sh --install-plugin-deps. No error found. AutoGPT run normally with no errors.
- Then, one by one, I started to move each plugin back to the AutoGPT/plugin folder to isolate which one is the error source. Obviously, I uncommented the configuration parameters from both plugins_config.yaml and .env files.
- Let's start with BingAI . No error raised when executed ./run.sh --install-plugin-deps.
- Let's try AutoGPTAlpacaTraderPlugin also alone. No error raised.
- Let's try them together, no error raised and both plugins are loaded together without problems.
- Let's try the First Party Plugins file alone enabling all the plugins it contains (https://github.com/Significant-Gravitas/Auto-GPT-Plugins#first-party-plugins). I got the following errors (Figure error_1):
Installing collected packages: websockets
Attempting uninstall: websockets
Found existing installation: websockets 10.4
Uninstalling websockets-10.4:
Successfully uninstalled websockets-10.4
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
alpaca-py 0.8.2 requires websockets<11.0,>=10.2, but you have websockets 11.0.3 which is incompatible.
Successfully installed websockets-11.0.3
- Now, let's enable AutoGPTAlpacaTraderPlugin together with the First Party Plugins, we found this error:
Installing collected packages: websockets
Attempting uninstall: websockets
Found existing installation: websockets 11.0.3
Uninstalling websockets-11.0.3:
Successfully uninstalled websockets-11.0.3
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
atproto 0.0.20 requires websockets<11.1.0,>=11.0.3, but you have websockets 10.4 which is incompatible.
Successfully installed websockets-10.4
My question here is: Are these error critical for the normal working of the plugins? Is there a suggested solution?