Skip to content

Commit

Permalink
Remove sudo commands from pip and python
Browse files Browse the repository at this point in the history
Using pip and python with sudo is discouraged. In fact, the command
itself tells you not to use sudo and reports warnings with regards to
directory permissions.
  • Loading branch information
hunterboerner committed May 23, 2021
1 parent 6a30b55 commit 3555849
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Dependencies
Check if your operating system provides those packages (check also those [deb/rpm/mac files](https://github.com/qiuwei/youtube-upload/releases)), otherwise install them with `pip`:

```
$ sudo pip install --upgrade google-api-python-client oauth2client progressbar2
$ pip install --upgrade google-api-python-client oauth2client progressbar2
```

Install
Expand All @@ -22,7 +22,7 @@ Install
$ wget https://github.com/tokland/youtube-upload/archive/master.zip
$ unzip master.zip
$ cd youtube-upload-master
$ sudo python setup.py install
$ python setup.py install
```

Or run directly from sources:
Expand Down

0 comments on commit 3555849

Please sign in to comment.