We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d171d3 commit 44a0201Copy full SHA for 44a0201
episodes/project_structure.md
@@ -49,7 +49,7 @@ This create a following structure for us.
49
50
```toml
51
[project]
52
-authors = ["Priyanka O <[email protected]>"]
+authors = ["Priyanka O"]
53
name = "greet_me"
54
version = "0.1.0"
55
platforms = ["linux-64"]
@@ -60,8 +60,15 @@ python = ">=3.10"
60
61
62
[tasks]
63
-start = "python -c 'print(\"Hello from greet_me!\")'"
+start = "python -c 'from my_package import happy; print(happy.greet_happy())'"
64
```
65
+```bash
66
+pixi run start
67
+```
68
+```output
69
+Yay! happy day! 😀
70
71
+
72
Lets install the dependencies now, which wiil generate the `pixi.lock` file
73
```bash
74
pixi install
0 commit comments