I am trying to do what the user from this question is doing. I have it working for the separate IPython console but not the one integrated into PyCharm.
To sum up, I want IPython to import some modules when I start it. I have gone to the C:\Users\Name\.ipython\profile_default\startup
directory and I have made a startup.py
file which contains
from numpy import *
print 'NumPy imported succesfully!'
After setting PYTHONSTARTUP
to point to the file, the IPython console outside of PyCharm works as intended, but the one in PyCharm does not.