zsh: no matches found: ray[tune]
See original GitHub issueWhen trying to execute
pip install ray[tune] torch torchvision filelock
from the tune Quick Start guide (https://ray.readthedocs.io/en/latest/tune.html) I get the error message
zsh: no matches found: ray[tune]
. Zsh apparently tries to match some pattern. Is the package literally called ray[tune] or is it enough to install ray?
By the way: The package name tune
seems to be still available, so it might make sense to use that name.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Unable to install ray[tune] tune-sklearn - python - Stack Overflow
I'm using a MacBook Pro 2019 with Big Sur Version 11.6 and Python 3.9.7 (default, Sep 16 2021, 08:50:36) [Clang 10.0.0 ] ::...
Read more >zsh: no matches found - Leigh Johnson - Medium
I've been using zsh and ohmyz.sh for years, but I still occasionally forget this shell interprets square brackets as a pattern on the...
Read more >Why do I get this error "zsh: no matches found"? - Reddit
The shell is interpreting the ? in the URL as a globbing wildcard, so because of this it tries to find files matching...
Read more >homebrew-core - Homebrew Formulae
a2ps 4.14 Any‑to‑PostScript filter
aacgain 1.8 AAC‑supporting version of mp3gain
aalib 1.4rc5 Portable ASCII art graphics library
aamath 0.3 Renders mathematical expressions as ASCII art
Read more >What's New - Oracle Linux Yum Server
... python-re-assert-1.1.0-11.el9 - Show where your regex match assertion failed! ... libbluray-1.3.4-1.el9 - Library to access Blu-Ray disks for video ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
you can also just get around this with
pip install 'ray[tune]'
I had the same problem with zsh treating
[]
as special characters, you can disable zsh globbing for pip addingalias pip='noglob pip'
to your.zshrc