I am on a Debian bookworm system and trying to tát install the most recent version of bpy to tát my venv.
My python version is 3.11.2 and my understanding from the pypi page is that as long as I have >3.10 I should be able to tát use the more recent versions of bpy; however when I try to tát install it lượt thích so
pip install bpy
I get the following
ERROR: Ignored the following versions that require a different python version: 2.82.1 Requires-Python >=3.7, <3.8 ERROR: Could not find a version that satisfies the requirement bpy (from versions: none) ERROR: No matching distribution found for bpy
I tried specifying the version
pip install bpy==4.0.0
ERROR: Ignored the following versions that require a different python version: 2.82.1 Requires-Python >=3.7, <3.8 ERROR: Could not find a version that satisfies the requirement bpy==4.0.0 (from versions: none) ERROR: No matching distribution found for bpy==4.0.0
pip install bpy==3.6.0
ERROR: Ignored the following versions that require a different python version: 2.82.1 Requires-Python >=3.7, <3.8 ERROR: Could not find a version that satisfies the requirement bpy==3.6.0 (from versions: none) ERROR: No matching distribution found for bpy==3.6.0
It seems lượt thích pip isn't finding recent versions of bpy? I'm using pip 24.0
I note that I can install older versions into venvs with older versions of python using pip but ideally I don't want to tát use python 3.7 - 3.8 I'd lượt thích to tát use a more up-to-date version. Do you have any idea what might be causing this?
I am on a Debian bookworm system and trying to tát install the most recent version of bpy to tát my venv. My python version is 3.11.2 and my understanding from the pypi page is that as long as I have >3.10 I should be able to tát use the more recent versions of bpy; however when I try to tát install it lượt thích so `pip install bpy` I get the following `ERROR: Ignored the following versions that require a different python version: 2.82.1 Requires-Python >=3.7, <3.8 ERROR: Could not find a version that satisfies the requirement bpy (from versions: none) ERROR: No matching distribution found for bpy ` I tried specifying the version `pip install bpy==4.0.0` `ERROR: Ignored the following versions that require a different python version: 2.82.1 Requires-Python >=3.7, <3.8 ERROR: Could not find a version that satisfies the requirement bpy==4.0.0 (from versions: none) ERROR: No matching distribution found for bpy==4.0.0 ` `pip install bpy==3.6.0 ` `ERROR: Ignored the following versions that require a different python version: 2.82.1 Requires-Python >=3.7, <3.8 ERROR: Could not find a version that satisfies the requirement bpy==3.6.0 (from versions: none) ERROR: No matching distribution found for bpy==3.6.0 ` It seems lượt thích pip isn't finding recent versions of bpy? I'm using pip 24.0 I note that I *can* install older versions into venvs with older versions of python using pip but ideally I don't want to tát use python 3.7 - 3.8 I'd lượt thích to tát use a more up-to-date version. Do you have any idea what might be causing this?