I used the Ansys Python Manager to download python and relevant libraries.

When I do that and then try to run dpf in with the following command
from ansys.dpf import core as dpf
in Jupyter notebook I get the following error.
`---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In[1], line 1
----> 1 from ansys.dpf import core as dpf
File ~\AppData\Local\Programs\Python\Python310\lib\site-packages\ansys\dpf\core\__init__.py:101
97 SERVER_CONFIGURATION = None
99 _server_instances = []
--> 101 settings.set_default_pyvista_config()
102 settings._forward_to_gate()
File ~\AppData\Local\Programs\Python\Python310\lib\site-packages\ansys\dpf\core\settings.py:35, in set_default_pyvista_config()
32 if module_exists("pyvista"):
33 import pyvista as pv
---> 35 pv.rcParams["interactive"] = True
36 pv.rcParams["cmap"] = "jet"
37 pv.rcParams["font"]["family"] = "courier"
File ~\AppData\Local\Programs\Python\Python310\lib\site-packages\pyvista\__init__.py:95, in __getattr__(name)
93 feature = inspect.getattr_static(sys.modules['pyvista.plotting'], name)
94 except AttributeError as e:
---> 95 raise AttributeError(f"module 'pyvista' has no attribute '{name}'") from None
97 return feature
AttributeError: module 'pyvista' has no attribute 'rcParams'`
**Any idea what could be causing this? **
I included a text file with my installed packages for reference.
Here is a list of my installed packages.