-
Notifications
You must be signed in to change notification settings - Fork 21
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
Conda only dependency #11
Comments
I don't think you can use poetry or poetry2conda for this particular package. Poetry relies on packages that are distributed through PyPI. I don't really understand what you are trying to achieve, given that your dependency is a "pure conda" package (which is regrettable). |
I'm facing a different use case that could also be described as a "conda only dependency". We use poetry for all our env management but need conda for our pyinstaller builds. Thus, we want pyinstaller in our conda env but not in our poetry envs. Not sure if this really helps OP but maybe someone passing through in the future. We simply used the "extras" functionality in pyproject.toml:
Then we call poetry2conda with the extras flag: @dojeda Really appreciate this tool! |
I was able to use the above trick to install a package not on pypi at all:
|
@dojeda This should be added to the package's descriptions; there is not a manual for all the possible yaml headers & configurations! Moreover, I think |
How do you run |
This works when there is only one conda-specific package, but what if there is more? How many dummy packages do I need to use? |
Hello!
I think this is a great tool, but I think there is one package that stops me from using it. I'm talking about rdkit.
You see, it's impossible to install it as a git dependency and the simplest way to install it is via Conda.
Can I use your tool in this case? And how 😊?)
The text was updated successfully, but these errors were encountered: