Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/google-cloud-platform/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google cloud platform 当我尝试安装Google Cloud SDK时,会发生什么样的问题?_Google Cloud Platform - Fatal编程技术网

Google cloud platform 当我尝试安装Google Cloud SDK时,会发生什么样的问题?

Google cloud platform 当我尝试安装Google Cloud SDK时,会发生什么样的问题?,google-cloud-platform,Google Cloud Platform,当我尝试从Google页面或Eclipse Marketplace安装Google Cloud SDK时遇到的问题是: Installing components. Welcome to the Google Cloud SDK! ERROR: gcloud failed to load: 'ascii' codec can't decode byte 0xfa in position 19: ordinal not in range(128) File "C:\Users\Pedro de

当我尝试从Google页面或Eclipse Marketplace安装Google Cloud SDK时遇到的问题是:

Installing components.
Welcome to the Google Cloud SDK!
ERROR: gcloud failed to load: 'ascii' codec can't decode byte 0xfa in position 19: ordinal not in range(128)
  File "C:\Users\Pedro de Jesús\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\bundledpython\lib\ntpath.py", line 85, in join
    result_path = result_path + p_path
UnicodeDecodeError: 'ascii' codec can't decode byte 0xfa in position 19: ordinal not in range(128)
Failed to install.
我期待着安装GoogleCloudSDK,因为我使用的是EclipseJeeOxygen,所以我需要安装SDK。我使用的是Windows 10、Intel Core i7,我还想知道为什么安装过程可以在另一台硬件与我相同的计算机上运行

'UnicodeDecodeError: 'ascii' codec can't decode byte 0xfa'
字节0xfa等于字符ú(这可以在“扩展ASCII字符”表中看到),可以在您提供的文件路径中看到:

文件“C:\Users\Pedro de Jesus…”

仅在重新尝试安装之前使用非ascii字符重命名此文件路径。

可能会引起兴趣:可能重复