-
Notifications
You must be signed in to change notification settings - Fork 14
chore: update README and setup scripts #193
Conversation
```bash | ||
pip install virtualenv | ||
virtualenv myenv | ||
virtualenv -p python3 myenv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Virtualenv is installed by default on python3:
https://docs.python.org/3/library/venv.html#creating-virtual-environments
python3 -m venv myenv
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to is because the CloudShell by default still has the python 2.7
1. Log in with your user credentials to run a code sample from the Cloud Shell: | ||
|
||
```bash | ||
gcloud auth login |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be google auth application-default login
?
https://cloud.google.com/sdk/gcloud/reference/auth/application-default/login
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no - if we use default authentication we have permission denied error creating the big query tables
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added minor observations, otherwise LGTM
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
Fixes #<issue_number_goes_here> 🦕