Skip to content
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
48 changes: 48 additions & 0 deletions pages/developers/intelligent-contracts/tooling-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -383,3 +383,51 @@ const receipt = await client.waitForTransactionReceipt({
status: "FINALIZED",
});
```


## Troubleshooting

### Common Setup Errors

#### ModuleNotFoundError: No module named genlayer

Make sure you installed dependencies:

```bash
pip install -r requirements.txt
```

If using a virtual environment, activate it first:

```bash
source .venv/bin/activate # Linux/macOS
.venv\Scripts\activate # Windows
```

#### Docker daemon is not running

GenLayer Studio requires Docker. Start Docker Desktop and verify:

```bash
docker info
```

#### Port 4000 already in use

```bash
# Linux/macOS
lsof -i :4000
# Windows
netstat -aon | findstr 4000
```

#### gltest command not found

```bash
pip install genlayer-test
```

### Getting Help

- Discord: discord.gg/8Jm4v89VAu
- GitHub Issues: github.com/genlayerlabs/genlayer-studio/issues