-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install from Anaconda #79
Comments
Thanks @elchinot7 ! Yeah, we could add a |
@chriddyp you are right, in regular situation it is posible to install any package using |
@elchinot7 It is possible but, as example, if you are using pandas from conda it reinstalls on top one with pip. Which is not very elegant. A plotly is available on conda it will be great to have dash too. |
With conda it's possible to define an environment.yml file: name: dash-conda-example
dependencies:
- python=3
- pip
- numpy
- pip:
- dash==0.20.0
- dash-renderer==0.11.2
- dash-html-components==0.8.0
- dash-core-components==0.18.1 And run: |
Refer to Dash Installation for latest recommend version configuration. |
Benefits of conda are to manage separate environments. Given any credible data scientist is working with Anaconda, it makes sense to manage a conda installation version. I can install dash into conda by: but I have to install core and html components by hand which is tedious. |
Thank you for the great set of packages and work! May I recommend adding official support for conda as this is kind of the gate for newcomers getting involved in analysis and visualization with Python (by official, I mean adding instructions to the documentation and move the pip option away to just as an alternative). There are a lot of issues when it comes to merging conda and pip packages together, described here https://www.anaconda.com/using-pip-in-a-conda-environment/ |
Are there any updates or plans for this as this is still open? |
The conda packages are maintained as part of So I suppose this can be closed. |
Is this being maintained? It looks like the latest version of dash on conda-forge is 1.4.1 vs the latest release being 1.7.0. Thanks! |
Update tooling
* modify click/dblclick behavior * - value null case - additional test * remove .only (again!) * bump version * fix regression on dropdown cells * update tests behavior on cell click * update changelog description to better reflect actual changes
* modify click/dblclick behavior * - value null case - additional test * remove .only (again!) * bump version * fix regression on dropdown cells * update tests behavior on cell click * update changelog description to better reflect actual changes
Hi guys,
I'm just wondering if you have or are planning an official Dash version for Anaconda installations.
I need to say that Dash is simple awesome. Thanks for this library.
Cheers
The text was updated successfully, but these errors were encountered: