Jetson-Nano-Ubuntu-20-image
Jetson-Nano-Ubuntu-20-image copied to clipboard
pip install -r requirements.txt stuck at "Building wheels for collected packages: grpcio"
When running pip install -r requirements.txt it is stuck at
"Building wheels for collected packages: grpcio"
Is this normal?
Building wheels for collected packages: grpcio Building wheel for grpcio (setup.py) ... / I am using the unclocked version, after an apt-get upgrade Thanks
Which software package are you installing, containing the mentioned requirement.txt ? I like to reproduce your issue.
Hi. For future references, it's not stuck.
There are times when the PyPi server is slow, or maybe your internet is unstable.
There are also times where the wheel takes too long to build, especially when C compiling is involved.
To check the full logs of the installation, try running with the verbose keyword:
pip install -vvv -r requirements.txt
I had a similar case when installing PyQt5 that took almost 2 hours.