plotly / dash-component-boilerplate

Get started creating your own Dash components here.
265 stars 182 forks source link

Do i need dash[dev]? #147

Closed TheBubblePopped closed 2 years ago

TheBubblePopped commented 2 years ago

Hi there,

do i need dash[dev] or will just dash be sufficient for all tasks?

T4rk1n commented 2 years ago

You need dash[dev] installed.

TheBubblePopped commented 2 years ago

But why? In which step is the dev package required?

T4rk1n commented 2 years ago

The dev dependencies install these extra packages:

# Dependencies used for development new Dash components
coloredlogs>=15.0.1
fire>=0.4.0
PyYAML>=5.4.1

fire and coloredlogs are used internally for building the official packages, PyYAML is used in the component generator for the R package.

TheBubblePopped commented 2 years ago

Thank you for the swift response. I ran cookiecutter without dash[dev] just dash. Does that mean i have to redo the whole process and move my components there or am i set if i just pip install dash[dev] and run npm run build?

T4rk1n commented 2 years ago

You can just install dash[dev] on the existing project.