Trying to install Jupyter gives me the above error
pipx install --python /usr/bin/python3 jupyter
No binaries associated with this package.
I updated pipx to look for binaries of dependent packages when the desired package has no binaries directly associated with it. This is the case with jupyter since it's a "metapackage" that just installs other packages.
>> pipx install jupyter
Installing package 'qtconsole' with pipx would install 1 binaries
- jupyter-qtconsole
Installing package 'notebook' with pipx would install 4 binaries
- jupyter-notebook
- jupyter-nbextension
- jupyter-serverextension
- jupyter-bundlerextension
Installing package 'jupyter-console' with pipx would install 1 binaries
- jupyter-console
Installing package 'nbconvert' with pipx would install 2 binaries
- jupyter-nbconvert
- python
No binaries associated with package jupyter.
Are any of these binaries what you were looking for?
Ahh, nice! yeah that's perfect. Wonder why it says python is installed under nbconvert?
Something to do with the way they defined their setup.py file. Maybe this line? https://github.com/jupyter/nbconvert/blob/master/setup.py#L181
Hey, was playing around with this. Why did you remove the functionality in beaff34?
Also, after looking at the spec, I think a better way to collect the dependency binaries (get_package_binary_paths) could be with something like #28
Hey, was playing around with this. Why did you remove the functionality in beaff34?
uninstall and list would also have to be updated, so the state of beaff34 was only partially done and would have been annoyingly unfinished (IMO).This has been added in 0.12.3.0.
> pipx install jupyter --include-deps
These binaries are now globally available
- iptest
- iptest3
- ipython
- ipython3
- jsonschema
- jupyter
- jupyter-bundlerextension
- jupyter-console
- jupyter-kernel
- jupyter-kernelspec
- jupyter-migrate
- jupyter-nbconvert
- jupyter-nbextension
- jupyter-notebook
- jupyter-qtconsole
- jupyter-run
- jupyter-serverextension
- jupyter-troubleshoot
- jupyter-trust
done! ✨ 🌟 ✨
Most helpful comment
This has been added in 0.12.3.0.