I have a problem when install tensor flow

it´s my firts time with tensor flow, and I just tried to test that everything imported correctly but I have this error.

module ‘numpy.linalg._umath_linalg’ has no attribute ‘_ilp64’

--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell In[9], line 3 1 import numpy as np 2 import matplotlib.pyplot as plt ----> 3 import tensorflow as tf File [c:\Users\DIEGO](file:///C:/Users/DIEGO) DIAZ\AppData\Local\Programs\Python\Python310\lib\site-packages\tensorflow_init_.py:45 [42](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/init.py:42) from tensorflow.python import tf2 as _tf2 [43](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/init.py:43) _tf2.enable() —> [45](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/init.py:45) from tensorflow._api.v2 import internal [46](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/init.py:46) from tensorflow.api.v2 import operators [47](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/init.py:47) from tensorflow.api.v2 import audio File [c:\Users\DIEGO](file:///C:/Users/DIEGO) DIAZ\AppData\Local\Programs\Python\Python310\lib\site-packages\tensorflow_api\v2_internal_init.py:13 [11](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/_api/v2/internal/init.py:11) from tensorflow._api.v2.internal import distribute [12](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/_api/v2/internal/init.py:12) from tensorflow._api.v2.internal import eager_context —> [13](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/_api/v2/internal/init.py:13) from tensorflow._api.v2.internal import feature_column [14](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/_api/v2/internal/init.py:14) from tensorflow._api.v2.internal import function [15](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/api/v2/internal/init.py:15) from tensorflow.api.v2.internal import graph_util File [c:\Users\DIEGO](file:///C:/Users/DIEGO) DIAZ\AppData\Local\Programs\Python\Python310\lib\site-packages\tensorflow_api\v2_internal\feature_column_init.py:8 [3](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/_api/v2/internal/feature_column/init.py:3) “”“Public API for tf._api.v2.internal.feature_column namespace [4](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/_api/v2/internal/feature_column/init.py:4) “”” [6](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/tensorflow/_api/v2/internal/feature_column/init.py:6) import sys as _sys

—> [57](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/numpy/testing/_private/utils.py:57) HAS_LAPACK64 = numpy.linalg._umath_linalg._ilp64 [59](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/numpy/testing/_private/utils.py:59) _OLD_PROMOTION = lambda: np._get_promotion_state() == ‘legacy’ [61](file:///C:/Users/DIEGO%20DIAZ/AppData/Local/Programs/Python/Python310/lib/site-packages/numpy/testing/_private/utils.py:61) IS_MUSL = False AttributeError: module ‘numpy.linalg._umath_linalg’ has no attribute ‘_ilp64’

.
I’ve already tried installing the numpy library again, updating it, downgrading the version and it still doesn’t work.

I appreciate the help with this problem