troubleshooting

2016-04-04 Thread Sk. Amirul Islam
i recently installed the application but when i ran it it gave a 'runtime error". i even reinstalled it. but it gives the same error everytime i try. im eclosing a screenshot of the error . thank you -- https://mail.python.org/mailman/listinfo/python-list

Re: NumPy, SciPy, & Python 3X Installation/compatibility issues

2014-09-23 Thread SK
Hi EK, Did you figure out questions 1, 2 and 3? SciPy (0.14.0) on installation asks me for Python 2.7. First day on Python here, I am really struggling :/ Thanks, SK On Saturday, May 10, 2014 7:07:33 PM UTC+2, esa...@gmail.com wrote: > Hi All-- > > > > Let me state at the star

Free chat for u.....hot.hot.....hot..............

2010-02-21 Thread sk raj
http://chattingfree.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list

Why do you use python?

2009-10-31 Thread sk
What would be your answer if this question is asked to you in an interview? a modified version might be: "Where would you use python over C/C++/Java?" (because my resume says I know C/C++/Java)? -- http://mail.python.org/mailman/listinfo/python-list

Re: multiprocessing and freezing on Windows

2009-07-18 Thread SK
Thanks Gabriel. Posted as: http://bugs.python.org/issue6461 The multiprocessing author has tentatively confirmed the bug. -- http://mail.python.org/mailman/listinfo/python-list

Re: multiprocessing and freezing on Windows

2009-07-04 Thread SK
To add a bit more information, I found that I needed to patch get_command_line in multiprocessing/forking.py replacing: if getattr(sys, 'frozen', False): return [sys.executable, '--multiprocessing-fork'] else: prog = 'from multiprocessing.forking import main

multiprocessing and freezing on Windows

2009-07-02 Thread SK
Is there a method for freezing a Python 2.6 app using multiprocessing on Windows using PyInstaller or py2exe that works? It is trying to call my executable instead of python.exe when the process starts and passes it --multiprocessing-fork . Adding a freeze_support() to my main doesn't help. Do I ha