pip install grpcio에서 멈출 때
tensorflow를 pip를 활용하여 설치하다보면, grpcio 설치 부분에서 더 이상 진행되지 않는 경우가 있습니다. 이럴때는 다음과 같이 pip와 setuptool를 업그레이드 해주시고 다시 시도해보시면 됩니다.
Solution
pip install --upgrade pip
pip install --upgrade setuptools
Then,
pip install tensorflow
Happy coding!