-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Questions: Migrating from poetry #7245
Comments
to add to this, I can see how to do forks in resolving dependencies, and adding sources. Is the following case covered in
|
A lot of different questions here but I'll try to answer them:
These don't exist right now, see #6472.
We intentionally don't support using an arbitrary virtual environment for the uv "project" APIs (
Same thing, we don't support this kind of only-dev workflow right now.
You can accomplish this without [project]
dependencies = [
"torch @ https://download.pytorch.org/whl/cpu/torch-2.0.1-cp310-none-macosx_11_0_arm64.whl ; sys_platform == 'darwin' and platform_machine == 'arm64'",
"torch @ https://download.pytorch.org/whl/cpu/torch-2.0.1-cp310-none-macosx_10_9_x86_64.whl ; sys_platform == 'darwin' and platform_machine == 'x86_64'",
"torch==2.0.1 ; sys_platform != 'darwin' or platform_machine != 'arm64' or platform_machine != 'x86_64'"
] Then you'd set That last feature ( |
-edit- Just rereading your response, are you saying it always lives in Thanks for the prompt response @charliermarsh In terms of This is the one that I am most interested in "location of current venv"
Example of full output
|
In terms of my torch question, it looks like
|
@mikeleppane some answers to some of your questions as well. |
I came here looking for information on
poetry env info
but found another comment on a closed issue that covered a few other points. So I hijacked that comment.Originally posted by @mikeleppane in #6668 (comment)
After using Poetry for years, I've decided to try uv. And it's great 👏. Here are some thoughts I had while using uv. Some of these may have been discussed already.
Thanks!
Originally posted by @mikeleppane in #6668 (comment)
The text was updated successfully, but these errors were encountered: