I'm using WingIDE for development and Ipython for running my scripts. I'm facing some inconvenience on several points:
Whenever I update my code, I have to reload my module in order to update it in IPython. To solve that I followed Jomonsugi's answer in the following link: How to automatically reload modules in IPython? and it works.
Each time I launch IPython, my path is set to my exe's location and I have to cd to my script's directory. I tried to change directory automatically when launching IPython by setting the parameter
c.InteractiveShell.ipython_dir = <mypath>
inipython_config.py
but it doesn't work.
Is it possible to set the default path? Is there a particular parameter to set in ipython_config.py?