File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,8 @@ Ensure Git is installed and available in PATH.
124124``` bash
125125# Clone the repository
126126git clone https://github.com/Zixir-lang/Zixir.git
127+
128+ # IMPORTANT: Navigate into the project directory
127129cd Zixir
128130
129131# Install Elixir dependencies
@@ -530,6 +532,24 @@ pip install numpy
530532xcode-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
You can’t perform that action at this time.
0 commit comments