Re: Python shell displays Segmentation Fault: 11 after upgrade to Mavericks OS

2013-10-25 Thread joel spencer
s/irking/working/ :) On Saturday, October 26, 2013 4:49:37 PM UTC+11, joel spencer wrote: > > i had this same problem after i upgraded my MBA to Mavericks. The > solution contained here works beautifully! > > The other thing that happened is that Mavericks completely wiped out all > my Python

Re: Python shell displays Segmentation Fault: 11 after upgrade to Mavericks OS

2013-10-25 Thread joel spencer
i had this same problem after i upgraded my MBA to Mavericks. The solution contained here works beautifully! The other thing that happened is that Mavericks completely wiped out all my Python libraries. I just restored them using time machine and they are irking fine again. And, yeah, i have

Re: Python shell displays Segmentation Fault: 11 after upgrade to Mavericks OS

2013-10-24 Thread donarb
On Thursday, October 24, 2013 2:34:13 PM UTC-7, Don Fox wrote: > > > > python manage.py shell > > Python 2.7.5 (v2.7.5:ab05e7dd2788, May 13 2013, 13:18:45) > > [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin > > Type "help", "copyright", "credits" or "license" for more information. >

Re: Python shell displays Segmentation Fault: 11 after upgrade to Mavericks OS

2013-10-24 Thread Thomas Lockhart
On 10/24/13 2:34 PM, Don Fox wrote: ... Segmentation fault: 11 This type of thing just started after upgrade. I assume there's a connection. I found a similar symptom with another application after doing piecemeal updates in MacPorts packages, and my problems went away with a more rigoro

Re: Python shell doesn't launch

2012-12-26 Thread Ramiro Morales
On Dec 26, 2012 7:46 PM, wrote: > > You know what? I didn't "expect" anything because I HAVEN'T DONE THIS > BEFORE That is why I am doing an introductory tutorial. Thanks, Ramiro - > highly intelligent answer. Ryan - you are a professional. Wait. Why do you assume I was trying to troll you

Re: Python shell doesn't launch

2012-12-26 Thread Ryan Blunden
Glad to be able to help. I've got a few tips too :) - Use the excellent Django Extensions app which once you add it to your INSTALLED_APPS tuple, will allow you to run python manage.py shell_plus, which automatically imports all of the models for apps. This is great as it's not often that yo

Re: Python shell doesn't launch

2012-12-26 Thread rkturn49
You know what? I didn't "expect" anything because I HAVEN'T DONE THIS BEFORE That is why I am doing an introductory tutorial. Thanks, Ramiro - highly intelligent answer. Ryan - you are a professional. On Wednesday, December 26, 2012 5:05:10 PM UTC-5, rktu...@gmail.com wrote: > > Whenever I

Re: Python shell doesn't launch

2012-12-26 Thread Gerald Klein
@cramm0 obviously new to the game, cut him a break. On Wed, Dec 26, 2012 at 4:11 PM, Ramiro Morales wrote: > On Dec 26, 2012 7:05 PM, wrote: > > > > Whenever I run "python manage.py shell," I don't get any errors, but I > get the following: > > > > C:\Python27\Lib\site-packages\django\bin\mysi

Re: Python shell doesn't launch

2012-12-26 Thread Ryan Blunden
That's Python's standard output when starting an interactive session. On 26/12/2012, at 2:05 PM, rktur...@gmail.com wrote: > Whenever I run "python manage.py shell," I don't get any errors, but I get > the following: > > C:\Python27\Lib\site-packages\django\bin\mysite>python manage.py shell >

Re: Python shell doesn't launch

2012-12-26 Thread Ramiro Morales
On Dec 26, 2012 7:05 PM, wrote: > > Whenever I run "python manage.py shell," I don't get any errors, but I get the following: > > C:\Python27\Lib\site-packages\django\bin\mysite>python manage.py shell > Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win > 32 > Type "

Re: Python Shell

2011-08-28 Thread j0ker
The second problem seems to be caused by a not set environment variable that Django needs. You could do that manually, but the recommended way is to use the shell provided by Django. Just use 'python manage.py shell' instead of IDLE. The missing Variables will be set. That should do the trick. On