Skip to content
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

Print Installation Path if not in working directory #4835

Conversation

danielenricocahall
Copy link
Contributor

@danielenricocahall danielenricocahall commented Jul 5, 2024

Summary

Addressing the issue detailed here regarding the visibility of the Python path when doing uv install.

Test Plan

TBD - can't quite reproduce the errors I'm seeing in CI locally.

@zanieb
Copy link
Member

zanieb commented Jul 6, 2024

Don't spend too much time on the snapshot filtering, I can futz with that part.

@danielenricocahall
Copy link
Contributor Author

Don't spend too much time on the snapshot filtering, I can futz with that part.

Thank you! My hero - I’ve been wrestling with that and can’t quite reproduce this last failure.

@zanieb
Copy link
Member

zanieb commented Jul 10, 2024

Sorry lost track of this one! I'll give this a look tomorrow.

@zanieb zanieb self-assigned this Jul 10, 2024
@danielenricocahall
Copy link
Contributor Author

Sorry lost track of this one! I'll give this a look tomorrow.

No worries and thank you!!

@@ -233,6 +233,7 @@ fn run_script() -> Result<()> {
Reading inline script metadata from: main.py
Resolved 1 package in [TIME]
Prepared 1 package in [TIME]
Installing to environment at [CACHE_DIR]/environments-v1/[RANDOM]/[RANDOM]/bin/python
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm hesitant to display these as user-facing messages for these internal environments — I wonder if there's a good way to avoid that?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah so revert the [RANDOM] filter and have an additional conditional to ensure we don't print in the event it's an internal environment e.g; [CACHE]/environments-v1...?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I think so. I'm curious for @charliermarsh's opinion.

@zanieb
Copy link
Member

zanieb commented Jul 10, 2024

I think the additional filters in #4787 will be helpful here.

@@ -1089,6 +1089,7 @@ fn install_editable_bare_cli() {
----- stderr -----
Resolved 1 package in [TIME]
Prepared 1 package in [TIME]
Installing to environment at [VENV]/bin/python3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we be showing [VENV] not [VENV]/bin/python3? It seems a bit weird to show the path to the interpreter executable.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yeah, we could do that - something like:

        if is_outside_working_directory {
            if let Some(parent_dir) = python_executable.parent().and_then(|p| p.parent()) {
                writeln!(
                    printer.stderr(),
                    "{}",
                    format!(
                        "Installing to environment at {}",
                        parent_dir.user_display()
                    )
                        .dimmed()
                )?;
            }
        }

? This yields [VENV]/ instead of [VENV]/bin/python

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you just want PythonEnvironment::root(), i.e., venv.root()?

@danielenricocahall
Copy link
Contributor Author

I think the additional filters in #4787 will be helpful here.

Hm are you thinking we use them before the parent dir evaluation step?

@danielenricocahall
Copy link
Contributor Author

Hi @zanieb ! Just wanted to follow-up here if/when you have a moment 😄

@zanieb
Copy link
Member

zanieb commented Jul 19, 2024

Thanks for the nudge! Sorry I'm stretched a little thin on contributions :) Let me know if you have more questions!

@zanieb
Copy link
Member

zanieb commented Jul 19, 2024

I don't actually think you'll need the new test filters if you're not displaying the Python executable anymore.

@zanieb
Copy link
Member

zanieb commented Oct 1, 2024

Continuing this in #7850

@zanieb zanieb closed this Oct 1, 2024
zanieb added a commit that referenced this pull request Oct 2, 2024
Supersedes #4835

Closes #2155

e.g.

```
❯ cargo run -q -- pip install --python ../../example httpx
Using Python 3.12.1 environment at /Users/zb/example
Resolved 7 packages in 561ms
Prepared 4 packages in 62ms
Installed 4 packages in 13ms
 + certifi==2024.8.30
 + h11==0.14.0
 + httpcore==1.0.5
 + httpx==0.27.2

❯ cargo run -q -- pip install httpx
Resolved 7 packages in 17ms
Installed 4 packages in 10ms
 + certifi==2024.8.30
 + h11==0.14.0
 + httpcore==1.0.5
 + httpx==0.27.2
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants