mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-24 14:34:17 +02:00
15 lines
397 B
Markdown
15 lines
397 B
Markdown
# Getting your development environment set up properly
|
|
```bash
|
|
uv venv
|
|
.venv\Scripts\activate
|
|
uv pip install -e ".[dev]"
|
|
```
|
|
|
|
# Fixing `AttributeError: module 'collections' has no attribute 'Callable'`
|
|
- open `.venv\Lib\site-packages\pyreadline\py3k_compat.py`
|
|
- change `return isinstance(x, collections.Callable)` to
|
|
```
|
|
from collections.abc import Callable
|
|
return isinstance(x, Callable)
|
|
```
|
|
|