-
-
Notifications
You must be signed in to change notification settings - Fork 1k
[Request] Handle Python user base scripts directory #772
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
Comments
A fix for this would be nice. |
User scripts directory is actually |
@restia666ashdoll The |
Installing Python using Scoop is already done on user-level (without If you still need to install packages on user-level and have them in the
Line 84 in e4e85d9
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Closed by #2144 |
Uh oh!
There was an error while loading. Please reload this page.
The Scoop manifest for Python (python.json) does not handle the Python user base scripts directory, so CLI scripts from packages installed in user mode (
pip install --user
) are not available on the PATH. Performing user installations of packages is considered best practice, and many packages (such as the popular Pipenv) recommend doing them.Two possible solutions might be:
Join-Path -Path (Split-Path -Path (python -m site --user-site) -Parent) -ChildPath Scripts
Related issue: ScoopInstaller/Versions#196
The text was updated successfully, but these errors were encountered: