-
Notifications
You must be signed in to change notification settings - Fork 2
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
Convert to .conda
as part of the pip install
?
#28
Comments
I am also interested in this idea n.b. conda/grayskull#541 and conda/conda-build#5380 Do we also have a way to install without leaving a copy in the package cache, in case we generate a confusing number of them or have ephemeral "make a single local project editable" wheels? |
I guess we would only cache the stuff that comes from PyPI, not the editable installs or dynamic references from Github. |
Can conda install a .conda without leaving it in pkgs/cache? |
I don't think there's an option for that. We would have to inject a temporary location for the pkgs_dirs setting and maybe discard it afterwards? |
Wondering if there's a net positive in using
whl2conda
for this. The rough logic would be to:pip install --no-deps ...
directly, convert to.conda
beforehand withwhl2conda
and then install that withconda --no-deps
.Benefits:
Cons:
The text was updated successfully, but these errors were encountered: