Tensorflow 2.17 and Jupyter notebooks

Hello everyone.
I am trying to run python 3.12 and tensorflow 2.17 in a virtual environment using Jupyter notebooks (Mac user). I have not been able to install them without issues.
I tried installation from terminal:
conda create --name myenv python=3.12
conda install -c conda-forge tensorflow=2.17.0
conda install Jupyter
but when opening Jupyter notebooks on myenv, there was this error “InvalidSpec: The package “pkgs/main/osx-64::blas==1.0=openblas” is not available for the specified platform”

So I decided to follow different path, using Anaconda Navigator. I installed different packages (numpy, pandas, scimitar-learn, and Jupyter) based on available packages. But when searching for tensorflow, I noticed that the available package is TensorFlow 2.12.0.

So my question is if anyone has been able to successfully install Tensorflow 2.17 on a virtual env running python 3.12, and use notebooks without issues?

and as a follow up question, are tensorflow 2.17 and python 3.12 fully compatible?
thank you!

Hi @rcuervo, I have tried to create python3.12 virtual environment and able install and open jupyter notebook. using the following commands,

python3.12 -m venv tf2.17  #used to create env
source tf2.17/bin/activate  #activate env
pip3 install tensorflow==2.17  #install tensorflow
pip3 install notebook    # install notebook
jupyter notebook   # open notebook

could you please try with the above commands. Thank You.