### Install AI-Researcher using uv Source: https://github.com/hkuds/ai-researcher/blob/main/README.md This snippet outlines the steps to install the AI-Researcher project using the 'uv' package manager. It covers installing uv, cloning the repository, setting up a virtual environment, and installing the project dependencies. It also includes installing Playwright for browser automation. ```bash # install uv curl -LsSf https://astral.sh/uv/install.sh | sh source ~/.bashrc # clone the project git clone https://github.com/HKUDS/AI-Researcher.git cd AI-Researcher # install and activate enviroment uv venv --python 3.11 source ./.venv/bin/activate uv pip install -e . playwright install ``` -------------------------------- ### Install AI-Researcher using Docker Source: https://github.com/hkuds/ai-researcher/blob/main/README.md Instructions for setting up the AI-Researcher environment using Docker. This includes pulling a pre-built Docker image or building it from a provided Dockerfile. ```bash docker pull tjbtech1/airesearcher:v1 ``` ```bash cd ./docker && docker build -t tjbtech1/airesearcher:v1 . ``` -------------------------------- ### Install AI-Researcher and Dependencies Source: https://context7.com/hkuds/ai-researcher/llms.txt Installs the uv package manager, clones the AI-Researcher repository, sets up a virtual environment, installs project dependencies, and pulls the necessary Docker image. Requires curl, git, and Python 3.11. ```bash # Install uv package manager curl -LsSf https://astral.sh/uv/install.sh | sh source ~/.bashrc # Clone and setup the project git clone https://github.com/HKUDS/AI-Researcher.git cd AI-Researcher # Create and activate virtual environment uv venv --python 3.11 source ./.venv/bin/activate uv pip install -e . playwright install # Pull the Docker image for research environment docker pull tjbtech1/airesearcher:v1 ```