Skip to content

remove $ so cut-and-paste works #639

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/pug/cli/installation.pug
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ block content
p First of all make sure you have latest stable Node.js and NPM installed on your machine.
p If you are going to target Native/Hybrid apps then you also need to install <a href="https://cordova.apache.org/" target="_blank">Cordova</a> first (may require `sudo`):
```shell
$ npm install -g cordova
npm install -g cordova
```

p Now we can install Framework7 CLI (may require `sudo`):
```shell
$ npm install -g framework7-cli
npm install -g framework7-cli
```

p If you have issues with installation related to access errors, you may try to run the command with additional flags:
```shell
$ npm install -g framework7-cli --unsafe-perm=true --allow-root
npm install -g framework7-cli --unsafe-perm=true --allow-root
```

p If you don't want to install it globally, it can also be used with <a href="https://github.com/npm/npx" target="_blank">npx</a>.
Expand Down