Installation HA software in System Linux Ubuntu

I open on Android aplication Home Assisten.
Look first image.
I click to “check for uodates”.
And I see look on image two.

The Android app Home Assistant (https://play.google.com/store/apps/details?id=io.homeassistant.companion.android) is for connecting your phone to your existing install of Home Assistant.

It needs you to have done that first.

It also needs a relatively current version of Android and WebView (https://companion.home-assistant.io/docs/getting_started#system-requirements)

You’ve told us nothing about your phone, so I’m going to have to guess that it’s ancient and horribly outdated.

After turn off vpn I can log in to panel using browser.
I can’t find option to add smart plugs connected to ewelink.

That’s probably what you want

That is answer for question from first posr:

Blockquote

Yes, you can use Home Assistant on Ubuntu!
Home Assistant offers two main installation options for Linux:
Home Assistant Core and Home Assistant OS.
While Home Assistant OS is a complete operating system designed specifically for Home Assistant, Home Assistant Core can be installed on top of an existing Linux distribution like Ubuntu.

### Installing Home Assistant Core on Ubuntu:

1. Update Your System:

Ensure your Ubuntu system is up to date:

sudo apt update && sudo apt upgrade

2. Install Dependencies:

Install the necessary dependencies:

sudo apt install -y python3.12 python3.12-dev python3.12-venv bluez libffi-dev libssl-dev libjpeg-dev zlib1g-dev autoconf build-essential libopenjp2-7 libtiff5* libturbojpeg0-dev tzdata ffmpeg liblapack3 liblapack-dev libatlas-base-dev

3. Create a Home Assistant User:

Create a dedicated user for Home Assistant:

sudo useradd -rm homeassistant

sudo chsh -s /bin/homeassistant

sudo usermod -aG dialout homeassistant

4. Set Up Home Assistant Directory:

Create a directory for Home Assistant data and assign ownership:

sudo mkdir /srv/homeassistant

sudo chown homeassistant:homeassistant /srv/homeassistant

5. Switch to Home Assistant User:

Switch to the newly created Home Assistant user:

sudo -u homeassistant -H -s

6. Initialize Virtual Environment:

Create and activate a Python virtual environment:

cd /srv/homeassistant
python3.12 -m venv . 
source bin/activate

7. Install Home Assistant:

Install Home Assistant using pip:

pip3 install homeassistant

8. Start Home Assistant:

Start Home Assistant:

hass


### Accessing Home Assistant:

Once Home Assistant is running, you can access it by navigating to
http://<your-server-ip>:8123
in your web browser.

Would you like more detailed instructions or have any specific questions about the setup?
Yes, you can use Home Assistant on Ubuntu
https://community.home-assistant.io/t/guide-installing-home-assistant-core-on-ubuntu-22-04/608224?citationMarker= "1"!

Home Assistant offers two main installation options for Linux:
Home Assistant Core and Home Assistant OS
https://community.home-assistant.io/t/guide-installing-home-assistant-core-on-ubuntu-22-04/608224?citationMarker= "1".

While Home Assistant OS is a complete operating system designed specifically for Home Assistant, Home Assistant Core can be installed on top of an existing Linux distribution like Ubuntu
https://community.home-assistant.io/t/guide-installing-home-assistant-core-on-ubuntu-22-04/608224?citationMarker= "1".

### Installing Home Assistant Core on Ubuntu:

1. Update Your System:

Ensure your Ubuntu system is up to date:

sudo apt update && sudo apt upgrade 

2. Install Dependencies:

Install the necessary dependencies:

sudo apt install -y python3.12 python3.12-dev python3.12-venv bluez libffi-dev libssl-dev libjpeg-dev zlib1g-dev autoconf build-essential libopenjp2-7 libtiff5* libturbojpeg0-dev tzdata ffmpeg liblapack3 liblapack-dev libatlas-base-dev

3. Create a Home Assistant User:

Create a dedicated user for Home Assistant:

sudo useradd -rm homeassistant sudo chsh -s /bin/homeassistant sudo usermod -aG dialout homeassistant

4. Set Up Home Assistant Directory:

Create a directory for Home Assistant data and assign ownership:

sudo mkdir /srv/homeassistant sudo chown homeassistant:homeassistant /srv/homeassistant

5. Switch to Home Assistant User:

Switch to the newly created Home Assistant user:

sudo -u homeassistant -H -s

6. Initialize Virtual Environment:

Create and activate a Python virtual environment:

cd /srv/homeassistant python3.12 -m venv . source bin/activate

7. Install Home Assistant:

Install Home Assistant using pip:

pip3 install homeassistant

8. Start Home Assistant:

Start Home Assistant:

hass

### Accessing Home Assistant:

Once Home Assistant is running, you can access it by navigating to
http://<your-server-ip>:8123
in your web browser.

CoPilot

> Blockquote