From e36cafd758cc02bce11deaddeab1a9d0f5c31a0b Mon Sep 17 00:00:00 2001 From: magnus2142 <magnus.bredeli@hotmail.com> Date: Wed, 11 May 2022 15:21:34 +0200 Subject: [PATCH] updated installation guide in readme --- README.md | 20 ++++---------------- bbcli/__version__.py | 2 +- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index d5dd27e..a76982d 100644 --- a/README.md +++ b/README.md @@ -85,22 +85,10 @@ To run this CLI you need python and pip installed, as well as ```magic``` librar **NB!** Currently, this CLI can only be installed using pip, but we are planning to support other installation methods later. -1. Install pip package - - ```Shell - pip install Blackboard-LMS-CLI - ``` -2. Install ```magic``` dependecy - ```Shell - # Windows: - pip install python-magic-bin - - # Linux: - sudo apt-get install libmagic1 - - # Mac OS X - brew install libmagic - ``` + +```Shell +pip install Blackboard-LMS-CLI +``` Test if the installation was successful by running ```$ bb --version``` command. You should see something like this: diff --git a/bbcli/__version__.py b/bbcli/__version__.py index f90b750..0b9f73f 100644 --- a/bbcli/__version__.py +++ b/bbcli/__version__.py @@ -1,4 +1,4 @@ -VERSION = (1, 0, 3) +VERSION = (1, 0, 4) PRERELEASE = None # alpha, beta or rc REVISION = None -- GitLab