Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/datasets/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ def as_streaming_dataset(
if not config.AIOHTTP_AVAILABLE:
raise ImportError(
f"To be able to use dataset streaming, you need to install dependencies like aiohttp "
f"using 'pip install datasets[streaming]' or 'pip install aiohttp' for instance"
f'using "pip install \'datasets[streaming]\'" or "pip install aiohttp" for instance'
)

from .utils.streaming_download_manager import StreamingDownloadManager
Expand Down
2 changes: 1 addition & 1 deletion src/datasets/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ def load_dataset(
if not config.AIOHTTP_AVAILABLE:
raise ImportError(
f"To be able to use dataset streaming, you need to install dependencies like aiohttp "
f"using 'pip install datasets[streaming]' or 'pip install aiohttp' for instance"
f'using "pip install \'datasets[streaming]\'" or "pip install aiohttp" for instance'
)
# Download/copy dataset processing script

Expand Down