I used pycharm and eclipse+pydev, and I also installed stackless python(2.7.1) for mac os x. when I try to import stackless, there always are tips which is "can't find such package/reference", but when I switch to IDLE/Client, "import stackless" is correct. I really don't know the reason, please help me. thanks a lot

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

For PyDev, provided you can launch it from a shell and it's just not finding it in the code analysis, you should be able to make it work by adding 'stackless' to the forced builtins: http://pydev.org/manual_101_interpreter.html

link|improve this answer
thanks a lot, it works – user643937 Feb 28 at 0:32
feedback

It's likely not in your PYTHONPATH in that environment. Check to ensure the module is in your PYTHONPATH and that it is being set in the environment in which python launches. This is typically accomplished by adding the appropriate entry to your .bashrc or environment.plist.

link|improve this answer
thanks a lot, I add the PYTHONPATH, and it works – user643937 Feb 28 at 0:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.