Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImportError: cannot import name 'opentype' on new installation

I've just created a Google Cloud compute engine, installed google-cloud package with both pip and pip3, and I'm experiencing the following error when launching a script with python3

    from google.cloud import bigquery
  File "/usr/local/lib/python3.5/dist-packages/google/cloud/bigquery/__init__.py", line 35, 
in <module>
    from google.cloud.bigquery.client import Client
  File "/usr/local/lib/python3.5/dist-packages/google/cloud/bigquery/client.py", line 36, in
 <module>

(more traceback lines..)

    from pyasn1_modules.rfc2459 import Certificate
  File "/usr/local/lib/python3.5/dist-packages/pyasn1_modules/rfc2459.py", line 20, in <modu
le>
    from pyasn1.type import opentype
ImportError: cannot import name 'opentype'

On the compute engine the following packages are installed:

pyasn1==0.1.9
pyasn1-modules==0.2.1
google-cloud==0.30.0
google-cloud-bigquery==0.28.0

Which can be the problem here?

like image 760
user1403546 Avatar asked Nov 28 '17 09:11

user1403546


2 Answers

Posting my solution in case it helps someone else - this fixed it for me:

pip install --upgrade google-auth-oauthlib

More details discussed here: https://www.raspberrypi.org/forums/viewtopic.php?f=114&t=198933&p=1241439#p1241439

like image 154
Captain Whippet Avatar answered Nov 14 '22 20:11

Captain Whippet


It looks like you have an issue with pyasn1, so you could try installing a newer version (the latest is 0.4.2), or even reinstalling it manually with:

sudo apt-get --reinstall install python-pyasn1 python-pyasn1-modules

And if you are inside a virtualenv, use instead:

pip install pyasn1 pyasn1-modules
like image 40
dsesto Avatar answered Nov 14 '22 20:11

dsesto