Re: Switching from Linux to Windows for development of Django applications

2014-09-27 Thread Mike Dewhirst
On 28/09/2014 3:09 AM, Some Developer wrote: If anyone can post information on their Windows development work flows I'd be very grateful since I'm pretty new to Windows development work. * This goes against Microsoft recommendations but I install Python2.x and Python3.x in the root of drive

Re: Switching from Linux to Windows for development of Django applications

2014-09-27 Thread Mike Dewhirst
On 28/09/2014 5:18 AM, Avraham Serour wrote: some packages that requires compilation could be a headache, the easier path is to get a binary and use easy_install to install inside the venv Chris Gohlke is your very best friend ... http://www.lfd.uci.edu/~gohlke/pythonlibs/ ... makes Windows

Re: Switching from Linux to Windows for development of Django applications

2014-09-27 Thread Avraham Serour
are you doing python or windows development? python development on windows shouldn't be much different, you have virtualenv and the same pycharm some packages that requires compilation could be a headache, the easier path is to get a binary and use easy_install to install inside the venv On Sat,

Switching from Linux to Windows for development of Django applications

2014-09-27 Thread Some Developer
Hi, For reasons outside of my control I have to switch from Linux to Windows for Django development and was wondering if any Windows developers had any tips? On Linux I make heavy use of pip and virtualenv to make sure that my packages are kept separate from the system packages. I'm thinking