Skip to content

Fix: Correct Python RunCommand configuration #5

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

bardusco
Copy link

This PR fixes the issue #2 where the incorrect command uvx run main.py was used for running Python scripts.
Since uvx is intended for executing globally installed binaries, the correct approach is to use uv run main.py,
which ensures the script runs within the appropriate virtual environment managed by uv.

Changes:
• Replace uvx run main.py with uv run main.py in the Python RunCommand configuration.

Why?
• Prevents execution issues caused by an incorrect command.
• Ensures compatibility with uv’s virtual environment handling.

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.

1 participant