Unable to install grpcio using pip install grpcio

后端 未结 2 889
面向向阳花
面向向阳花 2021-02-07 03:46

I am getting error while installing grpcio using pip install grpcio on my windows machine.I read here - https://github.com/grpc/grpc/issues/17829 that it may be due to error in

2条回答
  •  一向
    一向 (楼主)
    2021-02-07 04:40

    First, upgrade pip

    pip3 install --upgrade pip
    

    Then, update the setup tools:

    python3 -m pip install --upgrade setuptools
    

    At last, install grpcio using :

    pip3 install --no-cache-dir  --force-reinstall -Iv grpcio==
    

提交回复
热议问题