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!