[python-uk] Python based package installation, how to?

meitham meitham at meitham.com
Tue Dec 15 10:31:59 CET 2009


Hi Jia,

>> $ python
>> Python 2.6.4 (r264:75706, Nov  2 2009, 14:38:03)
>> [GCC 4.4.1] on linux2
>> Type "help", "copyright", "credits" or "license" for more information.
>>>>> import pyml
>> Traceback (most recent call last):
>>   File "<stdin>", line 1, in <module>
>> ImportError: No module named pyml
>>>>>
>>
>> Can anybody please give me a hand?

python is case sensitive and pyml is written as PyML, so you should try

>>> import PyML
>>> PyML.__version__


More information about the python-uk mailing list