I don't know about your other custom modules but regarding the example of "boto", this is the wrong directory level: you should add "/Library/Python/2.7/site-packages" to PYTHONPATH (via the environment variable or Spyder's PYTHONPATH manager) instead of "/Library/Python/2.7/site-packages/boto".
HTH, -Pierre 2013/2/9 thefatbrain <[email protected]>: > I have just updated the Python installation of my Mac OS 10.8.2 to Python > 2.7.3, I have pip installed, and have installed a few other modules with it. > Everything works fine under IDLE and IDLEX. > > I have been trying to work with Scipy and Numpy, knowing that Spyder is > pretty good at this, so I have installed Sypder as well. > However, Sypder failed to recognize any custom modules I have installed with > pip earlier. I did some research, and know that I need to add the path of > the module into Sypder->PYTHONPATH Manager, which I did. > For example, I have installed boto in > "/Library/Python/2.7/site-packages/boto", and I have exactly this line in > PYTHONPATH Manager... > But when I go to python console under Spyder, I also fail to run "import > boto"....so I did one step further and manually do a > sys.path.append("/Library/Python/2.7/site-packages/boto")...it still didn't > see the module. > > Any input will be highly appreciated. > > Brain > > -- > You received this message because you are subscribed to the Google Groups > "spyder" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/spyderlib?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > -- You received this message because you are subscribed to the Google Groups "spyder" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/spyderlib?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
