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
How about this? (default to pip, if pip3 available then use pip3
pip
pip3
PIP="pip" if command -v pip3 &> /dev/null then PIP="pip3" fi $PIP install pandoc-fignos pandoc-eqnos pandoc-tablenos pandoc-secnos pandoc-shortcaption
I have no pip but have pip3.
.../phd_thesis_markdown/install_mac.sh: line 18: pip: command not found make: *** [install] Error 127
and I solved it by manually install all pip things using pip3 instead of pip.
The text was updated successfully, but these errors were encountered:
Fix tompollard#109, make: *** [install] Error 127
9fc3ede
default to `pip`, if `pip3` available then use it.
No branches or pull requests
How about this?
(default to
pip
, ifpip3
available then usepip3
I have no
pip
but havepip3
.and I solved it by manually install all pip things using
pip3
instead ofpip
.The text was updated successfully, but these errors were encountered: