-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
ValueError: cannot reindex from a duplicate axis #643
Comments
Hi, |
What OS are you using? If it's windows, have you tried using Windows Subsystem for Linux 2.0 (WSL2)? Which version of Python are you using? The recommended version is Python 3.7, and pip v20.2. Both can be installed using Then you can use the following instructions: To get started, first clone this repo:
Create and activate a conda env:
Or a venv (make sure your
Install all the requirements:
You can now run the app:
and visit http://127.0.0.1:8050/. Let me know if you face the same xgboost error and the same duplicate axis error. Without the full error message it's difficult to know what issue you have with installing XGBoost. I'm also not able to reproduce the duplicate axis error, though with more details I might be able to reproduce it. |
For the above, you can run the following python code: import platform
import sys
import pip
import dash
import plotly
print("Operating System (OS):", platform.system())
print("OS Release:", platform.release())
print("Python version:", sys.version)
print("Pip version:", pip.__version__)
print("Dash version:", dash.__version__)
print("Plotly version:", plotly.__version__) And paste the output here |
App name
Description of bug
How to replicate the bug
Other notes
The text was updated successfully, but these errors were encountered: