We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8726756 commit 319b2a6Copy full SHA for 319b2a6
1 file changed
tools/install_local_wheel.py
@@ -51,8 +51,8 @@ def main():
51
logging.error('No wheel found. Has the build run successfully?')
52
sys.exit(2)
53
54
- # Install/upgrade the wheel
55
- call(['pip', 'install', '--upgrade', wheel])
+ # Install/upgrade the wheel with grpc extras
+ call(['pip', 'install', '--upgrade', f'{wheel}[grpc]'])
56
57
58
if __name__ == '__main__':
0 commit comments