<!-- .github/pull_request_template.md --> ## Description This .sh file can be used for EC2 deployment as explained in https://github.com/topoteretes/cognee-docs/pull/58 ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Removed outdated guidance for setting up evaluation environments, streamlining the visible instructions. - **Chores** - Updated the Ubuntu setup process to install Python 3.12, ensuring the virtual environment uses the latest version and enhancing overall performance. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
30 lines
932 B
Bash
30 lines
932 B
Bash
sudo apt-get update -y
|
|
sudo apt-get install -y ca-certificates curl
|
|
sudo install -m 0755 -d /etc/apt/keyrings
|
|
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
|
|
sudo chmod a+r /etc/apt/keyrings/docker.asc
|
|
|
|
# Add the repository to Apt sources:
|
|
echo \
|
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
|
|
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
|
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
sudo apt-get update -y
|
|
|
|
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
|
|
|
sudo docker run hello-world
|
|
|
|
sudo apt-get install -y python3-virtualenv
|
|
|
|
sudo add-apt-repository -y ppa:deadsnakes/ppa
|
|
|
|
sudo apt update -y
|
|
|
|
sudo apt install -y python3.12
|
|
|
|
virtualenv venv --python=python3.12
|
|
|
|
source venv/bin/activate
|
|
pip install poetry
|
|
poetry install
|