Re: [Tutor] [EXTERNAL] Re: Help Please

2019-02-22 Thread Mario Ontiveros
Thanks Alex, This helped. Mario Ontiveros -Original Message- From: Alex Kleider [mailto:aklei...@sonic.net] Sent: Wednesday, February 20, 2019 10:20 PM To: Mario Ontiveros Cc: tutor@python.org; Tutor Subject: [EXTERNAL] Re: [Tutor] Help Please On 2019-02-20 06:30, Mario Ontiveros

Re: [Tutor] import failure

2019-02-22 Thread Mats Wichmann
On 2/22/19 9:55 AM, Alex Kleider wrote: (p2) alex@one:$ python src/gdata/oauth/rsa.py key_factory = '/home/alex/.virtualenvs/p2/local/lib/python2.7/site-packages/tlslite/utils/keyfactory.pyc'> (p2) alex@one:$ python Python 2.7.15rc1 (default, Nov 12 2018, 14:31:15) [GCC 7.3.0] on linux2 Type

Re: [Tutor] import failure

2019-02-22 Thread Peter Otten
Alex Kleider wrote: > (p2) alex@one:$ ./tests/run_data_tests.py Here you let the script decide which interpreter to pick... > Traceback (most recent call last): > ImportError: No module named tlslite.utils ...and it looks like it's not the one you'd like to have: > (p2) alex@one:$ python >

[Tutor] import failure

2019-02-22 Thread Alex Kleider
I'm trying to programmatically manipulate my google contacts using a library (https://github.com/google/gdata-python-client) which I've cloned. The documentation suggests running a test to start with which I did (OS: Ubuntu 18.4, running in a python2.7 venv 'p2') with the following rather