Kirill
Kirill
Started getting the same error with psql on latest Arch Linux - `failed: FATAL: no PostgreSQL user name specified in startup packet`.
This is a valid concern, but I double checked the username and password. I assumed the error is the same from the details provided by the original poster. Distro-packaged psql...
The following worked: ```bash wget -O dinov2_vits14.pth https://dl.fbaipublicfiles.com/dinov2/dinov2_vits14/dinov2_vits14_pretrain.pth wget -O dinov2.zip https://github.com/facebookresearch/dinov2/archive/refs/heads/main.zip unzip -q dinov2.zip && rm dinov2.zip && mv dinov2-main dinov2 ``` ```python model = torch.hub.load('dinov2', 'dinov2_vits14', source='local', pretrained=False)...