I'm currently trying out PyCharm (Python 3.5 from the Anaconda distribution) and can't find a way to run code in an already open console. As an example, consider the following code:
from time import time
now = time()
from inspect import signature
import numpy as np
import scipy as sp
import sympy
import sys
import matplotlib.pyplot as plt
print(time() - now)
If this is run in the Spyder IDE, the first run takes about 2 seconds, but subsequent runs take microseconds because the modules are already loaded. In PyCharm, every run takes 2 seconds. Is it possible to have PyCharm not reimport modules to run faster?