Skip to content

Instantly share code, notes, and snippets.

@kaxing
Last active June 21, 2023 04:47
Show Gist options
  • Save kaxing/d555eace5e74f42b842912cfbc4a323a to your computer and use it in GitHub Desktop.
Save kaxing/d555eace5e74f42b842912cfbc4a323a to your computer and use it in GitHub Desktop.
Install umbrel on ubuntu 23.04

Install Umbrel on Ubuntu 23.04 lunar

error: externally-managed-environment

Workaround:

Bypass PEP-668,

  1. Avoid the install commands
sudo apt install docker docker-compose
curl -L https://umbrel.sh | bash -s -- --no-instal-docker --no-install-compose

Or: 2. Allow pip to break system package

sudo sh -c 'echo "PIP_BREAK_SYSTEM_PACKAGES=1" >> /etc/environment'
# a reboot may require to reload the system wide variables

The later effects all system-wise operations.

Networking problem if running from a VM behind VPN

Error response from daemon: error parsing HTTP 408 response body: invalid character '<' looking for beginning of value: "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n\n"

The fix:

sudo ip link set dev eth0 mtu 1400

References:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment