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
As it is, pip search <dog> just sucks.
pip search <dog>
Because it doesn't:
We add a new pip-search command as an artificial quasi-wrapper to "pip search".
pip-search
❗ NO ETA... as I'm tired of 2020
The text was updated successfully, but these errors were encountered:
I now have a nice search command! - Coming soon! 👍
Sorry, something went wrong.
Then there is the awesome Powershell pip search hack from our colleagues at pip_search from their PR #15 from here.
pip search
#15
Add the following to your $PROFILE:
$PROFILE
Function PipSearchProxy() { param( [string] [Parameter(Position=0)] $firstArg, [string[]] [Parameter(Position=1, ValueFromRemainingArguments)] $allRemaining) if ($firstArg -eq "search") { & pip-search @allRemaining } else { & pip.exe $firstArg @allRemaining } } Set-Alias -Name pip -Value PipSearchProxy
Which allow you to run it with the classic pip search. (It wraps the args.)
274198c
For using the same old way of doing pip search <something> in Bash-style shells, add the following to your .zshrc, .bashrc, .bash_profile:
pip search <something>
.zshrc, .bashrc, .bash_profile
alias pip='function _pip(){ if [ $1 = "search" ]; then pip_search "$2"; else pip "$@"; fi; };_pip'
or written in a cleaner way:
function _pip_search_proxy(){ if [ $1 = "search" ]; then pip_search "$2"; else pip "$@"; fi; } alias pip='_pip_search_proxy'
No branches or pull requests
As it is,
pip search <dog>
just sucks.Because it doesn't:
We add a new
pip-search
command as an artificial quasi-wrapper to "pip search".❗ NO ETA... as I'm tired of 2020
The text was updated successfully, but these errors were encountered: