4cd2d4af2b
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Waiting to run
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Waiting to run
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
53 lines
1.4 KiB
Bash
Executable File
53 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# This script is used to setup a local development environment for the browser-use project.
|
|
# Usage:
|
|
# $ ./bin/setup.sh
|
|
|
|
### Bash Environment Setup
|
|
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
|
|
# set -o xtrace
|
|
# set -x
|
|
# shopt -s nullglob
|
|
set -o errexit
|
|
set -o errtrace
|
|
set -o nounset
|
|
set -o pipefail
|
|
IFS=$'\n'
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
|
|
if [ -f "$SCRIPT_DIR/lint.sh" ]; then
|
|
echo "[√] already inside a cloned browser-use repo"
|
|
else
|
|
echo "[+] Cloning browser-use repo into current directory: $SCRIPT_DIR"
|
|
git clone https://github.com/browser-use/browser-use
|
|
cd browser-use
|
|
fi
|
|
|
|
echo "[+] Installing uv..."
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
|
|
#git checkout main git pull
|
|
echo
|
|
echo "[+] Setting up venv"
|
|
uv venv
|
|
echo
|
|
echo "[+] Installing packages in venv"
|
|
uv sync --dev --all-extras
|
|
echo
|
|
echo "[i] Tip: make sure to set BROWSER_USE_LOGGING_LEVEL=debug and your LLM API keys in your .env file"
|
|
echo
|
|
uv pip show browser-use
|
|
|
|
echo "Usage:"
|
|
echo " $ browser-use use the CLI"
|
|
echo " or"
|
|
echo " $ source .venv/bin/activate"
|
|
echo " $ ipython use the library"
|
|
echo " >>> from browser_use import BrowserSession, Agent"
|
|
echo " >>> await Agent(task='book me a flight to fiji', browser=BrowserSession(headless=False)).run()"
|
|
echo ""
|