rueckstiess / mtools

A collection of scripts to set up MongoDB test environments and parse and visualize MongoDB log files.
Apache License 2.0
1.89k stars 401 forks source link

zsh: no matches found: mtools[all] #828

Closed NathanHazout closed 4 years ago

NathanHazout commented 4 years ago

on macOS, following the documentation to install:

pip3 install mtools[all]

I get

zsh: no matches found: mtools[all]

p-mongo commented 4 years ago

You need to quote the brackets in zsh.

pip3 install 'mtools[all]'
p-mongo commented 4 years ago

The documentation at http://blog.rueckstiess.com/mtools/install.html should be updated to use the quotes also.