autogen-agentchat: This package conflicts with ag2 / pyautogen. Ensure that autogen-agentchat is not installed before installing waldiez. If you have already installed autogen-agentchat, you can uninstall it with:
python3 -m pip uninstall -y autogen-agentchat
# if you are sure which pip is being used:
# pip uninstall -y autogen-agentchat
# to find the path of the current python interpreter:
# python3 -c "import sys; print(sys.executable)"
# in a jupyter notebook this would be:
# import sys
# !{sys.executable} -m pip uninstall -y autogen-agentchat
If already installed waldiez, you might need to reinstall it after uninstalling autogen-agentchat:
python3 -m pip install --force --no-cache waldiez pyautogen
# if you are sure which pip is being used:
# pip install --force --no-cache waldiez
# to find the path of the current python interpreter:
# python3 -c "import sys; print(sys.executable)"
# in a jupyter notebook this would be:
# import sys
# !{sys.executable} -m pip install --force --no-cache waldiez pyautogen
Generally, a new virtual environment is recommended to avoid conflicts:
python3 -m venv .venv
## Linux / macOS:
# source .venv/bin/activate
## Windows:
## In cmd.exe
# venv\Scripts\activate.bat
## In PowerShell
# venv\Scripts\Activate.ps1
License
This project is licensed under the MIT License - see the LICENSE file for details.