Trying to install blender with different python version

I'm trying to install
/usr/ports/graphics/blender
from port but to install
/usr/ports/cad/freecad
I had to remove
/usr/ports/lang/python311
completely and install
/usr/ports/lang/python312
instead. Now I went to install
/usr/ports/graphics/blender
from port but when building I get an error output saying that
/usr/ports/graphics/blender
require
/usr/ports/lang/python311
to build but if I want I can use the 'PYTHON_VERSION=' to use another version but there's no garantie it will work. So I put in
/etc/make.conf
: PYTHON_VERSION=3.12 but its not working I get the same output appeared after that .
 
You can run Blender with Cuda using Podman on Freebsd
dont know if that helps resolve your issue


 
You can run Blender with Cuda using Podman on Freebsd
dont know if that helps resolve your issue


thanks its always good to have options ill look at it but I dlike to know how to install from port with a different python version
 
thanks its always good to have options ill look at it but I dlike to know how to install from port with a different python version
If you still have a blender package located under /var/cache/pkg, you could try installing it by ignoring the dependencies.
Code:
pkg install -M
see man pkg-install

(Maybe not what you are looking for...)
 
Back
Top