Created
October 27, 2016 17:33
-
-
Save daspecster/bf8a54a2af8fdfc64af7cad4cc0b8ae0 to your computer and use it in GitHub Desktop.
Process for getting right version of core?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# With fresh venv | |
cd google-cloud-python | |
rm -rf .tox | |
rm -rf ./**/.tox | |
pip install tox | |
tox -e py27 --recreate --notest | |
cd core | |
../.tox/py27/bin/python setup.py install | |
cd .. | |
cd speech | |
../.tox/py27/bin/python setup.py install | |
cd .. | |
# run my test script | |
.tox/py27/bin/python ../test_speech_async.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get...
But I have some prints in my
_helper.py
and so it's actually on line 645.