-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Changing sudo pip to pip in readme.rst file. #4224
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #4224 +/- ##
========================================
Coverage 94.41% 94.41%
========================================
Files 188 188
Lines 14151 14151
========================================
Hits 13360 13360
Misses 791 791 Continue to review full report at Codecov.
|
@@ -39,7 +39,7 @@ The easiest way to install aws-cli is to use `pip`_ in a ``virtualenv``:: | |||
|
|||
or, if you are not installing in a ``virtualenv``, to install globally:: | |||
|
|||
$ sudo pip install awscli | |||
$ pip install awscli |
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.
This probably won’t work, plus it’s not right in this part of the doc (it’s the same as the command just before).
pip install --user awscli
could be an alternative that works without virtual env and without messing us the system (or being denied)
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.
So should we just remove it or leave it as it is?
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.
I don’t understand the question.
sudo pip install
is bad, pip install
won’t work. More thought is needed (e.g. with the install --user
idea)
Hi @kshithijiyer, Apologies for the delay. We're cleaning up our backlog according to our new contribution process. I understand the sentiment of this change, and agree with @merwok that just dropping the I think we should draw a better distinction between installing for development purposes here in the GitHub repository, and direct end users more towards the content in the Installation section of the AWS CLI User Guide. Given the lag between opening this and now, I'm happy to make these changes, but I can leave it for you to do as well since it's a minimal change from what you already have. It might be better for you to open a new PR given the conflicts present from the long time; otherwise you'll need to rebase as well. Let me know how you'd like to proceed! |
After some further discussion, we'd be even happier to remove the entire installation section, save for things that a developer would use, and redirect all end users to the User Guide installation section. |
Given that we haven't heard back on this PR, I'm going to close it due to inactivity. As suggested above, there are broader improvements to the installation documentation that could be made here and I think that can be in a separate PR. |
fixes: #4175