Ramesh wrote:

> I am new to python.
> 
> I downloaded python 2.7.8 tarball, successfully cross compiled it, to make
> sure that the subsystems are correctly built, I tried running the python
> test scripts on the MIPS based target board. I hit the below error while I
> do so,


On second thoughts, how are you doing this? If I'm reading the next line
correctly:

> # /opt/Python-2.7.8/bin/python2.7
> /opt/Python-2.7.8/lib/python2.7/test/test___all__.py

you haven't installed Python, you've just compiled it and are now trying to
run the test suite manually.

If you read the README file, you should see instructions that tell you to
run the following commands:

    ./configure
    make
    make test
    sudo make install


I recommend following those instructions if you can.


-- 
Steven

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to