-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: uses a vscode.Task for downloading
This is the right way of installing packages and inheriting variables from the default terminal
- Loading branch information
Showing
2 changed files
with
51 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It looks like this change breaks package installation on Windows.
In my setup (which i think is fairly standard - the python folder and the python Scripts folder are both in PATH)
pip
andpython
are globally available, butpython3
is not.Therefore the previous version with
pip install...
worked, butpython3 -m pip install..
does not.I'm not sure whether this is a windows particularity, but it should probably be taken into account and amended for Windows.
EDIT: fixed in PR #772