From 5927753def92ec696faf944e71d167f7e0925a9f Mon Sep 17 00:00:00 2001 From: Theron Boerner Date: Sun, 23 May 2021 12:45:12 -0500 Subject: [PATCH] Add setuptools import to setup.py This fixes a distutils error for unknown distribution options: 'entry_points' and 'install_requires'. See https://stackoverflow.com/a/50722265/1905235 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65f62a6..7c47d27 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: