安装带有多个版本py2.7的Google Cloud SDK时出现sqlite3错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装带有多个版本py2.7的Google Cloud SDK时出现sqlite3错误相关的知识,希望对你有一定的参考价值。
首次从AWS设置转移到GCE,请善待我的天真问题。
在步骤./google-cloud-sdk/install.sh
期间,我遇到以下错误:
Welcome to the Google Cloud SDK!
Traceback (most recent call last):
File "/Users/t/Desktop/./google-cloud-sdk/bin/bootstrapping/install.py", line 8, in <module>
import bootstrapping
File "/Users/t/Desktop/google-cloud-sdk/bin/bootstrapping/bootstrapping.py", line 19, in <module>
from googlecloudsdk.core.credentials import store as c_store
File "/Users/t/Desktop/google-cloud-sdk/lib/googlecloudsdk/core/credentials/store.py", line 34, in <module>
from googlecloudsdk.core.credentials import creds
File "/Users/t/Desktop/google-cloud-sdk/lib/googlecloudsdk/core/credentials/creds.py", line 40, in <module>
import sqlite3
File "/usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sqlite3/__init__.py", line 24, in <module>
from dbapi2 import *
File "/usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sqlite3/dbapi2.py", line 28, in <module>
from _sqlite3 import *
ImportError: No module named _sqlite3
仔细检查后,我注意到我的/usr/local/Cellar/python
即有两个python2.7版本。 2.7.10_2
和2.7.11
。
奇怪的是,当我去python命令行时,这个问题:
Python 2.7.10 (default, Oct 6 2017, 22:29:07)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sqlite3
>>> from _sqlite3 import *
>>> print('hello, this seems to work')
hello, this seems to work
虽然不幸的是install.sh
正在从系统中获取py2.7.11
版本而不是python版本,但我不确定我们是否可以设置一些环境变量,(例如在我们开始安装之前的$CLOUDSDK_PYTHON
)。
是的,您应该将$ CLOUDSDK_PYTHON环境变量设置为指向正确的Python安装。看到一个类似的问题:google-cloud-sdk installation not finding right Python 2.7 version in CentOS /usr/local/bin
以上是关于安装带有多个版本py2.7的Google Cloud SDK时出现sqlite3错误的主要内容,如果未能解决你的问题,请参考以下文章
Google 电子表格 CSV 导出的下载链接 - 带有多个表格
在windows7 64位 安装MySQL-python-1.2.5.win32-py2.7.exe
配置Python 2.7.1外加环境pywin32-216.win32-py2.7
windows 和 linux 安装 scrapyd 出现Not a directory site-packages/scrapyd-1.0.1-py2.7.egg/scrapyd/txapp.py(
Google BigQuery:通过 Python google-cloud-bigquery 版本 0.27.0 与 0.28.0 创建视图