facebookresearch / pytorchvideo

A deep learning library for video understanding research.

Home Page:https://pytorchvideo.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The installation of “Stable Diffusion web UI” natively on FreeBSD fails because can’t install torch and torchvision

Marietto2008 opened this issue · comments

Hello to everyone.

I’m trying to clone and install the “Stable Diffusion web UI” on FreeBSD,following this mini tutorial :

GitHub

This is what I came up with :

[marietto@marietto ~/Desktop/Files]$ git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui

[marietto@marietto ~/Desktop/Files]$ cd stable-diffusion-webui

[marietto@marietto ~/Desktop/Files/stable-diffusion-webui]$ sudo pkg install py39-pytorchvideo

[marietto@marietto ~/Desktop/Files/stable-diffusion-webui]$ mkdir venv

[marietto@marietto ~/Desktop/Files/stable-diffusion-webui]$ python3 -m venv venv

[marietto@marietto ~/Desktop/Files/stable-diffusion-webui]$ . venv/bin/activate

(venv) [marietto@marietto ~/Desktop/Files/stable-diffusion-webui]$ python3 -m pip install torch torchvision==0.13.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113

Looking in indexes: https://pypi.org/simple,https:/download.pytorch.org/whl/cu113

ERROR: Could not find a version that satisfies the requirement torch (from versions: none)

ERROR: No matching distribution found for torch

The script works up to a point and then devolves into stuff that I don’t think has much to do with FreeBSD. The venv gets created and the failure doesn’t happen until the very end of the script (where the app would take over).

Also just activating the virtual environment and manually running [launch.py] seems to result in the same error, which really looks to be issues with the world of python…

https://pastebin.com/raw/jTNQ62dM

Apparently it’s trying to install pytorch but can’t. I don’t know what to do next.