We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mac is (nowerdays) using zsh per default (previously it was bash)
Starting with macOS Catalina (v10.15 anno Oktober 2019), your Mac uses zsh as the default login shell and interactive shell.
https://support.apple.com/en-ca/HT208050
which has fancy command line name globbing that interferes with pip
mu-editor/mu#852 http://zsh.sourceforge.net/Guide/zshguide05.html#l137
Solution for mac users is to do:
pip install "autobahn[all]"
or
pip install -e ."[all]"
The text was updated successfully, but these errors were encountered:
interesting .. there seems to be agreement that actually pip intall -e ".[all" is the way to go mu-editor/mu#852 (comment) :
pip intall -e ".[all"
it should work on the BSDs as well ...
Sorry, something went wrong.
No branches or pull requests
Mac is (nowerdays) using zsh per default (previously it was bash)
https://support.apple.com/en-ca/HT208050
which has fancy command line name globbing that interferes with pip
mu-editor/mu#852
http://zsh.sourceforge.net/Guide/zshguide05.html#l137
Solution for mac users is to do:
or
The text was updated successfully, but these errors were encountered: