Replies: 2 comments 4 replies
-
See more discussion here: #323 For automatic setup, the current thinking is that one can use the For everyday package management once things are setup, there's no particular reason mise needs to be involved? Just run your favorite package manager as you see fit? Use tasks if you want to make shortcut commands? I'm not sure I understand what you're asking about? Mise certainly isn't intended to wrap every aspect of every development tool? |
Beta Was this translation helpful? Give feedback.
-
(Note, I'm not authoritative about anything here, just a happy user of mise!) What you say makes sense to me, and there is significant philosophical subtlety, and the documentation could for sure be better about spelling out the intent of the system, especially in places where there's some gray area overlap like using pipx as a mise backend. After all all these things are "package managers" that install and uninstall bundles of software?
Mise (and asdf) live in the "language agnostic tool manager" niche I think?
The last one is key I think? If you're developing in Python, you should be using pip (or pipenv or poetry or ...) and The use case for pipx/uvx backends (I think??) is more "I'm not working in Python per se, but my basic toolset starting point includes something that happens to be written in Python and distributed with pip, and by using this backend I can have mise install that tool in a consistent way for anyone who uses this repository". Otherwise, having mise in the picture would just be an awkward layer of unnecessary indirection, if you've already got (say) Python set up in a project. I'm sure @jdx would be open to PRs for documentation to clarify design intent and expected use cases! |
Beta Was this translation helpful? Give feedback.
-
I've used mise for a while, but at an extremely basic level. So far, all I've been doing is basically this:
However, as a PyCharm user the GUI even takes care of some of those last steps for me.
I've been reading the docs to try and understand what else mise can do for me, and I was pretty confused about the package management features. I think I've figured it out now, but I'll explain my journey since that might be useful.
For example, one question I had, was can mise help me manage packages installed in my venv? There is a custom backend for pipx that says you can use it to install python packages. I was not already familiar pipx, but it seems like it can manage some but not all python packages. For example, because scikit-image is not a CLI-type application, it doesn't appear to work:
Example running `mise use pipx:scikit-image --verbose` throws an error
I guess this fits with the idea that mise is neither a system package manager like brew, nor a language package manager like pip. Then, I noticed that buried in the docs for the pipx backend, it is mentioned that one can have the pipx backend use uv under the hood. Again, I was not already familiar with uv, but it seems to be a replacement for both pipx as well as pip. So, that re-ignited the idea that maybe mise can fully set up the venv with required packages. So, I ran
mise use -g uv
to install it. The docs say that it should automatically replace pipx, so I trymise use pipx:scikit-image --verbose
again:Example running `mise use pipx:scikit-image --verbose` throws an error when using uv
It looks like mise is indeed using uv as expected, but it still isn't able to install the scikit-image package for me.
The python cookbook shows this section of code:
Which makes me think that uv (via mise ?) could be doing a bit more with regards to package management, but it also shows that uv is working alone for project-specific package management. I was pretty confused about what I should expect from these tools right now, but my guess now is that the cookbook is the best example at the moment.
One thing I haven't tried yet is the python default packages feature. That feature specifically calls out pip, so I'm assuming it works as expected.
Lastly, because this became a bit of a stream-of-thought, here are the questions that the docs didn't immediately answer for me:
Beta Was this translation helpful? Give feedback.
All reactions