-
Notifications
You must be signed in to change notification settings - Fork 5
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
tqdm dependency missing with conda-forge install #193
Comments
👋 Thanks for opening your first issue here! Please make sure you filled out the template with as much detail as possible. You might also want to take a look at our contributing guidelines. |
JessicaS11
changed the title
Clarify installation instructions for interactive features and update dependencies
tqdm dependency missing with conda-forge install
Apr 23, 2024
Closed
Thanks for opening this. That is strange that |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Tutorial notebooks require a dev install to run (due to missing dependency
tqdm
).Full code that generate the error
As part of this JOSS review, I followed the installation instructions for mamba + downloaded the repo using
git clone
here. However, I DID NOT perform a dev install (pip install .
) and attempted to run thedocs/tutorial/fetch_walkthrough.ipynb
notebook. The first call to fetch (grid = fetch.bedmap2( layer="thickness", verbose="q", )
failed withValueError: Missing package 'tqdm' required for progress bars.
.As a user, I would expect that I can follow the installation instructions, clone the repo (or download a tutorial notebook) and it will run without further environment management or local install. I'm not familiar enough with packaging with pyproject to quickly debug, but it looks like somehow
tqdm
isn't getting picked up as a dependency during the conda/mamba installation (is it sill default withpooch[progress]
as noted inpyproject.toml
)?).The text was updated successfully, but these errors were encountered: