You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run foreach ($programName in @("python", "python3", "git", "pip", "pip3", "poetry")) { ...
python is not found
python3 is not found
git is not found
pip is not found
pip3 is not found
poetry is not found
setup-python does prepend the same as on our image:
@dblanchette Windows images are currently very bare-bone, so they have a lot of shortcomings in terms of supported software compared to GitHub-hosted runners. This is an area I want to improve in the coming weeks, I'll let you know once it's ready for testing.
When running a Windows workflow using the official image you provide, we get errors running a Python shell:
The runners launched with runs-on do not seem to have any tools on the path.
Are there extra steps needed?
Further investigation
With
.github/actions/windows-debug-info/action.yaml
Results
Runs On
Upon checkout, we get a warning
To create a local Git repository instead, add Git 2.18 or higher to the PATH
The Path before
setup-python
:This seems really short
None of the listed executables are found:
setup-python
does prepend the same as on our image:After
setup-python
, we do havepython
,python3
,pip
, etc. on the path. Git is still not found. The Python shell worksGitHub hosted
Everything works. We get a very long path that includes all the tools we need (and many that we don't need)
The text was updated successfully, but these errors were encountered: