Bootstrap

python安装grpcio报错

pip3 install grpcio --index-url https://pypi.tuna.tsinghua.edu.cn/simple
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead.
Collecting grpcio
  Using cached https://pypi.tuna.tsinghua.edu.cn/packages/81/9a/6b33e8d15850356772f0ee6489bc8346a7aa90f0c86733283e139740865e/grpcio-1.48.2.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-build-t9o402jg/grpcio/setup.py", line 263, in <module>
        if check_linker_need_libatomic():
      File "/tmp/pip-build-t9o402jg/grpcio/setup.py", line 223, in check_linker_need_libatomic
        stderr=PIPE)
      File "/usr/lib64/python3.6/subprocess.py", line 729, in __init__
        restore_signals, start_new_session)
      File "/usr/lib64/python3.6/subprocess.py", line 1278, in _execute_child
        executable = os.fsencode(executable)
      File "/usr/lib64/python3.6/os.py", line 800, in fsencode
        filename = fspath(filename)  # Does type-checking of `filename`.
    TypeError: expected str, bytes or os.PathLike object, not list
    
    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-t9o402jg/grpcio/
python3 -m pip install --upgrade pip
pip3 install grpcio

;