You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,17 @@
15
15
- Write Nuxt.js applications using Python!
16
16
- Currently only supports custom Javascripthon but in the future other compilers will also be expected to work.
17
17
18
+
## Try the example
19
+
20
+
1. Clone this repository and change directory into it
21
+
2. Install dependencies:
22
+
```
23
+
npm install # or use yarn
24
+
25
+
pip install -r requirements.txt
26
+
```
27
+
3. Run example: `npm run dev`
28
+
18
29
## Setup
19
30
- Add `@nuxtjs/python` dependency using yarn or npm to your project
20
31
- Add `@nuxtjs/python` to `modules` section of `nuxt.config.js`
@@ -28,7 +39,10 @@
28
39
}
29
40
```
30
41
31
-
- Install the [Javascripthon](https://gitlab.com/metapensiero/metapensiero.pj) Python transpiler (for now **you'll need the development version** e.g. `pip install -r requirements.txt`).
42
+
- Install the [Javascripthon](https://gitlab.com/metapensiero/metapensiero.pj) Python transpiler. For now **you'll need the master branch** e.g:
0 commit comments