Hello all,
I would appreciate any help - if anyone has tried using python in Alteryx.
I do not understand why am I getting an error saying ModuleNotFoundError when Plotly package is already installed perfectly in Alteryx python tool.
My understanding is "Plotly Express as well as Graph Objects are a built-in part of the plotly library" and should work just after installing plotly.
https://plotly.com/python/plotly-express/#:~:text=Plotly%20Express%20is%20a%20built,plotly.graph_objects.Figure%20instance.
Am I missing something here? (Please find the picture attached below)
I am installing the following:

I also tried:
Package.installPackages("plotly") and it worked yet the same following error.
But when I import the following I get error on express as well as Graph Objects:

ModuleNotFoundError: No module named 'plotly.graph_objects'
ModuleNotFoundError: No module named 'plotly.express'
Additionally:
I have a huge processing and I wanted to add the graphs in the workflow itself. I have a working python code and wanted to enrich my Alteryx workflow with it. (I am using plotly as I have way more chart manipulation capabilities and Alteryx charting is restrictive in comparison to plotly)