I am learning data science, using Python and I suddenly found it take so much time to load these lib like numpy,pandas when I use Pycharm or sublime text3.
But when I use Spyder which has been installed by Anaconda to run my program, it's super fast!
I really want to use Pycharm, how to make it as fast as Spyder?
I also found Spyder will run several Python.exe, Spyder will run 5 python.exe background while sublime just one. Is it the reason that it's so fast?
For example to import these libs: [import pandas as pd import matplotlib.pyplot as plt import seaborn as sns import numpy as np from scipy.stats import norm from sklearn.preprocessing import StandardScaler from scipy import stats import warnings import sympy
]
Then it will take:
sublime 4.1 seconds
Spyder 0.06 seconds