Skip to content

Commit 45fb057

Browse files
author
Leo Louvar
committed
Docs: update SETUP_GUIDE for v7.0
1 parent bb3fb8a commit 45fb057

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

SETUP_GUIDE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@ Ensure Git is installed and available in PATH.
124124
```bash
125125
# Clone the repository
126126
git clone https://github.com/Zixir-lang/Zixir.git
127+
128+
# IMPORTANT: Navigate into the project directory
127129
cd Zixir
128130

129131
# Install Elixir dependencies
@@ -530,6 +532,24 @@ pip install numpy
530532
xcode-select --install
531533
```
532534

535+
#### Wrong Directory / Task Not Found
536+
537+
```error
538+
** (Mix) The task "phx.server" could not be found
539+
```
540+
541+
**Solution:** You are not in the Zixir project directory. Make sure to:
542+
```bash
543+
cd Zixir # Navigate to the project folder
544+
mix phx.server
545+
```
546+
547+
**Verify you're in the right place:**
548+
```bash
549+
pwd # Should show .../Zixir
550+
ls mix.exs # Should list the mix.exs file
551+
```
552+
533553
#### Zigler Build Errors
534554

535555
```error

0 commit comments

Comments
 (0)