python-dev?

Dayve

Dabbler
Joined
Nov 24, 2018
Messages
21
I have a jail running Home Assistant and would like to install some packages for it. How would I go about doing this?

sudo apt-get install -y python-dev pkg-config libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev libswscale-dev libavresample-dev libavfilter-dev

Here is the link to the component: https://www.home-assistant.io/components/stream/
 

danb35

Hall of Famer
Joined
Aug 16, 2011
Messages
15,458
There's obviously no apt under FreeBSD (side note--the preferred tool has been apt rather than apt-get for several years--but old habits die hard, I guess); the comparable tool is pkg. As a first attempt, I'd simply try pkg install python-dev pkg-config ... and see what happens. I'm sure some of those won't work, though, and you're kind of your own to find those--freshports.org would be a good resource to find the correct package names.
 
Top