DOC: Force Removal of pandas From Dependencies · Issue #25487 · pandas-dev/pandas (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Description
From a discussion on Gitter with @TomAugspurger when following the pandas contributing guide the step:
conda env create -f environment.yml
Causes pandas to be installed in the environment from conda as a result of dependency resolution with third party libraries (ex: statsmodels, pyarrow, seaborn).
To prevent undesired conflicts between the local development version and the installed version we should update the documentation to have an explicit removal of the bundled version as such:
conda uninstall --force pandas