Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scripts/dev_setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ pip install -e ./libraries/microsoft-agents-copilotstudio-client/ --config-setti
pip install -e ./libraries/microsoft-agents-hosting-aiohttp/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-core/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-teams/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-msteams/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-dialogs/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-fastapi/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-slack/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-storage-blob/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-storage-cosmos/ --config-settings editable_mode=compat

Expand Down
18 changes: 16 additions & 2 deletions scripts/dev_setup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
python -m venv venv
if command -v python >/dev/null 2>&1
then
PYTHON=python
elif command -v python3 >/dev/null 2>&1
then
PYTHON=python3
else
echo "Error: neither 'python' nor 'python3' was found on PATH." >&2
return 1 2>/dev/null || exit 1
fi

. .\venv\bin\activate
$PYTHON -m venv venv

. ./venv/bin/activate

pip install -e ./libraries/microsoft-agents-activity/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-authentication-msal/ --config-settings editable_mode=compat
Expand All @@ -9,7 +20,10 @@ pip install -e ./libraries/microsoft-agents-copilotstudio-client/ --config-setti
pip install -e ./libraries/microsoft-agents-hosting-aiohttp/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-core/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-teams/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-msteams/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-dialogs/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-fastapi/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-hosting-slack/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-storage-blob/ --config-settings editable_mode=compat
pip install -e ./libraries/microsoft-agents-storage-cosmos/ --config-settings editable_mode=compat

Expand Down
Loading