plotly / dash-daq

Control components for Dash
MIT License
141 stars 40 forks source link

After installation, no modules are found? #178

Open davelil4 opened 1 year ago

davelil4 commented 1 year ago

There are no components or modules after installing dash_daq. I am running pip3 install dash_daq and pip3 install dash-daq as well as with regular pip and nothing is working.

image
alexcjohnson commented 1 year ago

@davelil4 did you solve this? The package is certainly not deprecated - we haven't updated it in a while, though there are a ton of updates merged and just waiting for QA, but the latest released version is still expected to work fine.

chbeyg commented 1 year ago

encountered the same issue, any update on it?

alexcjohnson commented 1 year ago

@chbeyg installation works fine for me. What is the outcome of the following commands for you?

> pip list | grep daq
dash-daq                        0.5.0
> python
Python 3.10.6 (main, Sep 16 2022, 12:25:54) [Clang 14.0.0 (clang-1400.0.29.102)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dash_daq
>>> dash_daq.__version__
'0.5.0'
>>> dir(dash_daq)
['BooleanSwitch', 'ColorPicker', 'DarkThemeProvider', 'Gauge', 'GraduatedBar', 'Indicator', 'Joystick', 'Knob', 'LEDDisplay', 'NumericInput', 'PowerButton', 'PrecisionInput', 'Slider', 'StopButton', 'Tank', 'Thermometer', 'ToggleSwitch', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__', '__version__', '_basepath', '_component', '_components', '_css_dist', '_current_path', '_dash', '_filepath', '_js_dist', '_os', '_sys', '_this_module', 'async_resources', 'f', 'json']