AttributeError: module 'google.cloud' has no attribute 'bigquery
up vote
-1
down vote
favorite
I'm using Goggle Cloud for my proyect with firebase, reading my custom .json
and already installed the package with pip3:
pip3 install --upgrade google-cloud-bigquery
My requirements.txt
google
bottle
tornado
requests
stripe
pymongo
firebase_admin
webtest
httpagentparser
PyJWT
google-cloud-logging
pytz
xmltodict
zeep
lxml
defusedxml
python-dotenv
google-cloud-bigquery
And initialize APP with:
import google.cloud.bigquery
import os
from dotenv import load_dotenv
load_dotenv(verbose=True)
script_dir = os.path.dirname(__file__)
file_path = os.path.join(script_dir, os.getenv('FIREBASE_ADMIN_CREDENTIAL_PATH'))
client = google.cloud.bigquery.Client.from_service_account_json(file_path)
client.setup_logging()
But show me this error:
AttributeError: module 'google.cloud' has no attribute 'bigquery'
Can you help me?
python pip google-bigquery
add a comment |
up vote
-1
down vote
favorite
I'm using Goggle Cloud for my proyect with firebase, reading my custom .json
and already installed the package with pip3:
pip3 install --upgrade google-cloud-bigquery
My requirements.txt
google
bottle
tornado
requests
stripe
pymongo
firebase_admin
webtest
httpagentparser
PyJWT
google-cloud-logging
pytz
xmltodict
zeep
lxml
defusedxml
python-dotenv
google-cloud-bigquery
And initialize APP with:
import google.cloud.bigquery
import os
from dotenv import load_dotenv
load_dotenv(verbose=True)
script_dir = os.path.dirname(__file__)
file_path = os.path.join(script_dir, os.getenv('FIREBASE_ADMIN_CREDENTIAL_PATH'))
client = google.cloud.bigquery.Client.from_service_account_json(file_path)
client.setup_logging()
But show me this error:
AttributeError: module 'google.cloud' has no attribute 'bigquery'
Can you help me?
python pip google-bigquery
what command are you running to run the script?
– Willian Fuks
2 days ago
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I'm using Goggle Cloud for my proyect with firebase, reading my custom .json
and already installed the package with pip3:
pip3 install --upgrade google-cloud-bigquery
My requirements.txt
google
bottle
tornado
requests
stripe
pymongo
firebase_admin
webtest
httpagentparser
PyJWT
google-cloud-logging
pytz
xmltodict
zeep
lxml
defusedxml
python-dotenv
google-cloud-bigquery
And initialize APP with:
import google.cloud.bigquery
import os
from dotenv import load_dotenv
load_dotenv(verbose=True)
script_dir = os.path.dirname(__file__)
file_path = os.path.join(script_dir, os.getenv('FIREBASE_ADMIN_CREDENTIAL_PATH'))
client = google.cloud.bigquery.Client.from_service_account_json(file_path)
client.setup_logging()
But show me this error:
AttributeError: module 'google.cloud' has no attribute 'bigquery'
Can you help me?
python pip google-bigquery
I'm using Goggle Cloud for my proyect with firebase, reading my custom .json
and already installed the package with pip3:
pip3 install --upgrade google-cloud-bigquery
My requirements.txt
google
bottle
tornado
requests
stripe
pymongo
firebase_admin
webtest
httpagentparser
PyJWT
google-cloud-logging
pytz
xmltodict
zeep
lxml
defusedxml
python-dotenv
google-cloud-bigquery
And initialize APP with:
import google.cloud.bigquery
import os
from dotenv import load_dotenv
load_dotenv(verbose=True)
script_dir = os.path.dirname(__file__)
file_path = os.path.join(script_dir, os.getenv('FIREBASE_ADMIN_CREDENTIAL_PATH'))
client = google.cloud.bigquery.Client.from_service_account_json(file_path)
client.setup_logging()
But show me this error:
AttributeError: module 'google.cloud' has no attribute 'bigquery'
Can you help me?
python pip google-bigquery
python pip google-bigquery
edited 2 days ago
Willian Fuks
6,41462346
6,41462346
asked 2 days ago
Daniel ORTIZ
86111029
86111029
what command are you running to run the script?
– Willian Fuks
2 days ago
add a comment |
what command are you running to run the script?
– Willian Fuks
2 days ago
what command are you running to run the script?
– Willian Fuks
2 days ago
what command are you running to run the script?
– Willian Fuks
2 days ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53402413%2fattributeerror-module-google-cloud-has-no-attribute-bigquery%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
what command are you running to run the script?
– Willian Fuks
2 days ago