-
-
Notifications
You must be signed in to change notification settings - Fork 39.8k
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
Add python-pip as package dependency for archlinux #7041
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doing a sudo pip is not recommended and is considered a bad practice. It is a lot security risk to do so as it gives root privileges while PyPi installer packages.One can use sudo with apt but not with pip. sudo pip overwrites python content provided by our OS vendor.
It turns out all the python requirements already are included in archlinux official repositories. "pacman -S --needed python-appdirs python-argcomplete python-colorama" will solve the issue for archlinux. |
@fauxpark , I understand your point now. and using pip install --user as requirements manager for python in install_linux.sh. |
Description
Due to "pip3 install" failed in script linux_install.sh. python-pip has been added as package dependency for archlinux.
Types of Changes
Issues Fixed or Closed by This PR
#7040
*
Checklist