Hi, I'm trying to create an interactive histogram with plotly, but fig.show() does not open up my visualization.
I have the following plotly version installed: '5.19.0'
**Python version: **Python 3.10.13 | packaged by Anaconda, Inc. | (main, Sep 11 2023, 13:24:38) [MSC v.1916 64 bit (AMD64)] on win32
IDE: Pycharm Community.
System: Laptop with Windows 11 Education, 64 bit, Version 23H2, OS build 22631.3447
I'm trying to run the **following code **(both in python console and in a script) but no figure shows (and I get no error message):
import plotly.graph_objects as go
import numpy as np
np.random.seed(1)
x = np.random.randn(500)
fig = go.Figure(data=[go.Histogram(x=x)])
fig.show()
I tried installing plotly in another conda env and it displayed the histogram just fine.
This env has the following packages: https://pastebin.com/eSjYw5p2
The env I want to use plotly on has the following packages installed: https://pastebin.com/3M07ULae
Also, the TensorFlow 2.10 runs just fine with my RTX 3050 Ti GPU without requiring WSL.
Any ideas on how I could fix this on my Py3.10 TF 2.10 env?
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.