I am trying to configure this python library and it is very hard for me. I suspect this is because I am a hobby programmer, but in the past I have successfully used programs on the command line. I am using Windows and Python 2.6.
The help shown below is taken from the website.
wget http://pypi.python.org/packages/source/y/yql/yql-0.2.tar.gz
tar -xzf yql-0.2.tar.gz
cd yql-0.2
python setup.py install
Through a series of Google searches, this seems to be for Unix / Mac teams. My previous process did not work, so I'm looking for all the help I can get.
Thank you very much in advance!
Here is the error:
>>> import yql
Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
File "c:\python25\lib\site-packages\yql-0.6-py2.5.egg\yql\__init__.py", line 201, in <module>
class Public(object):
File "c:\python25\lib\site-packages\yql-0.6-py2.5.egg\yql\__init__.py", line 229, in Public
@scheme.setter
AttributeError: 'property' object has no attribute 'setter'
source
share