Trying to install blender with different python version

I'm trying to install
graphics/blender
from port but to install
cad/freecad
I had to remove
lang/python311
completely and install
lang/python312
instead. Now I went to install
graphics/blender
from port but when building I get an error output saying that
graphics/blender
require
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 .
 
Last edited by a moderator:
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...)
 
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 .
To change the 'default' Python version, put this in make.conf:
Code:
DEFAULT_VERSIONS+= python=3.13

This works for any port that USES= python without specifying a version.
 
Back
Top