Updated the readme (#273)

* Install/Uninstall multiple packages using ppman

* Updated the readme

* updated a variable

Co-authored-by: Thomas <git@hexf.me>
This commit is contained in:
Atharva 2021-06-05 13:04:43 +05:30 committed by GitHub
parent 1c3aa4a3e6
commit 22018cbc9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
const chalk = require('chalk');
exports.command = ['install <runtimes...>'];
exports.command = ['install <packages...>'];
exports.aliases = ['i'];
exports.describe = 'Installs the named package';

View File

@ -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