Installation problem for tensorflow2.15 using conda

i have problem to install tensorflow2. My steps are:
1 conda creat env
2 conda install -c conda-forge tensorflow==2.15
Then i run to check the installation

import tensorflow as tf; print(tf.__version__);

The output is:

024-05-06 15:00:04.543840: E external/local_xla/xla/stream_executor/cuda/cuda_dnn.cc:9261] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered
2024-05-06 15:00:04.543873: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:607] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered
2024-05-06 15:00:04.566831: E external/local_xla/xla/stream_executor/cuda/cuda_blas.cc:1515] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered
2024-05-06 15:00:04.571144: I tensorflow/core/platform/cpu_feature_guard.cc:182] This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.
To enable the following instructions: SSE4.1 SSE4.2 AVX AVX2 FMA, in other operations, rebuild TensorFlow with the appropriate compiler flags.
2.15.0

i also run:
print(tf.config.list_physical_devices('GPU'))
The output is:
[PhysicalDevice(name='/physical_device:GPU:0', device_type='GPU')]

Hi @jh1, Based upon the above provided code and the corresponding outputs i can see that you have successfully installed tensorflow 2.15 with GPU. Could you please let us know the exact issue you are facing. Thank You.