3👍
It looks like the problem is related to Mac OS DNS resolution specifics. While trying to resolve this problem with @ruffy, what fixed it was changing the LAN DNS server to Google (8.8.8.8
).
I’ve logged this issue in PyCharm tracker so that we can provide a workaround for it in the future updates.
Related topics:
3👍
I had this problem too, but this was caused because my hostname was ‘localhost’.
Once I changed my hostname to something else (from the sharing section in Preferences) – it worked like a (Py)Charm.
The problem was somewhere in pydev-console, and I don’t know why my solution worked – I only guessed it was the problem because originally the console worked, and then it didn’t and the only thing had changed was my hostname (due to some fiddling at work)
- [Django]-Django test model with fake user
- [Django]-Error: "unsupported locale setting" on Python / OSX
- [Django]-Is it possible to apply Wagtail CMS to my existing Django project?
- [Django]-Why does the Django Atom1Feed use atom:updated instead of atom:published?
0👍
start terminal
nano /Applications/PyCharm.app/helpers/pydev/pydevconsole.py
after line 160 add:
160 def process_exec_queue(interpreter):
+ 161 print 'here'
162 while 1:
163 # etcetera
save and run shell again, does it show the print message? If it does, move it into the while loop and repeat the process until you’ve narrowed down the problem
- [Django]-Can I have 2 Django sites using 2 different version of Python on 1 domain?
- [Django]-Proper way to add code to logout view in Django