From 22018cbc9b350e35bba05602d42e6c1378a8cb29 Mon Sep 17 00:00:00 2001 From: Atharva Date: Sat, 5 Jun 2021 13:04:43 +0530 Subject: [PATCH] Updated the readme (#273) * Install/Uninstall multiple packages using ppman * Updated the readme * updated a variable Co-authored-by: Thomas --- cli/commands/ppman_commands/install.js | 2 +- readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/commands/ppman_commands/install.js b/cli/commands/ppman_commands/install.js index 237add0..8b2baf9 100644 --- a/cli/commands/ppman_commands/install.js +++ b/cli/commands/ppman_commands/install.js @@ -1,6 +1,6 @@ const chalk = require('chalk'); -exports.command = ['install ']; +exports.command = ['install ']; exports.aliases = ['i']; exports.describe = 'Installs the named package'; diff --git a/readme.md b/readme.md index e4d73c0..6165b24 100644 --- a/readme.md +++ b/readme.md @@ -147,7 +147,7 @@ cli/index.js ppman list cli/index.js ppman install python # Install specific version of python -cli/index.js ppman install python 3.9.4 +cli/index.js ppman install python=3.9.4 # Run a python script using the latest version echo 'print("Hello world!")' > test.py