Open crazy4pi314 opened 1 year ago
Thanks for the feedback.
Unfortunately, it is by design that conda packages use dates rather than semver because it is not 1 on 1 mapping between conda packages and pypi packages.
Also we don't recommend mixing conda installation with pip installations.
We will have a conda version of mldesigner when there is a stable version released and for now, I would suggest you using pip installations to use the mldesigner package.
Hi @crazy4pi314. Thank you for opening this issue and giving us the opportunity to assist. We believe that this has been addressed. If you feel that further discussion is needed, please add a comment with the text “/unresolve
” to remove the “issue-addressed” label and continue the conversation.
@xiangyan99 Thanks for the reply! I am pretty sure that is not a limitation of conda in general, I regularly use pip and conda packages for things like numpy and pandas that have the same versioning on both. Is there another technical reason other than the platform itself that prevents this? /unresolve
It is not a technical issue that you/we :) cannot mix using conda and pip.
It is by design that the packages we shipped onto conda package are stable-only packages.
In most cases, it should work fine if you mix them with pip packages, but this scenario is not guaranteed to work.
@xiangyan99 Sorry I wasn't referring to mixing conda and pip, but to the version number support on conda. I put some examples below for both conda-forge and microsoft channels below, so I was just trying to understand if there was a build/CI limitation making it not possible to match the versions.
Also fwiw in most of the DS/AI communities I work in conda is the primary env manager and folks mix conda and pip all the time.
There are two major reasons underneath.
Describe the bug There is a PyPi package for
azure-ai-ml
and a conda package which each use a different version numbering scheme (conda -> dates, PyPi -> semver.) This means that other packages that take a dependance on azure-ai-ml basically pick one or the other schema to pin and then the other won't work.To Reproduce Steps to reproduce the behavior:
mldesigner
from pip. It will not install due to a version incompatibility.azure-ai-ml
from conda and install the pip one, it works to installmldesigner
.Expected behavior Conda and PyPi versions of packages should use the same numbering system for releases.