mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-03 07:04:16 +00:00

Moves some shared code from samples into core. complete/cleanup the rename to Microsoft.AutoGen adds new projects in AutoGen.Extensions
14 lines
203 B
Bash
14 lines
203 B
Bash
#!/bin/bash
|
|
|
|
# dotnet setup
|
|
dotnet workload update
|
|
dotnet dev-certs https --trust
|
|
|
|
# python setup
|
|
pushd python
|
|
pip install uv
|
|
uv sync
|
|
source .venv/bin/activate
|
|
echo "export PATH=$PATH" >> ~/.bashrc
|
|
popd
|