You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I keep getting this error which I think is from spyder trying to import pandas:
File "C:\Users\GamaD\Anaconda3\lib\site-packages\numpy\lib\npyio.py", line 8, in
import pandas as pd
File "C:\Users\GamaD\Anaconda3\lib\site-packages\pandas_init_.py", line 35, in
"the C extensions first.".format(module))
ImportError: C extension: 'iNaT' not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace --force' to build the C extensions first.
The first few lines of code are:
#Problem Set 2
#Name : Dan Gamarnik
#Date : 1/21/2018
import os
import math
import scipy.optimize as opt
import numpy as np
import scipy.stats as sts
import matplotlib.pyplot as plt
np.seterr(all='ignore')
The text was updated successfully, but these errors were encountered:
I keep getting this error which I think is from spyder trying to import pandas:
File "C:\Users\GamaD\Anaconda3\lib\site-packages\numpy\lib\npyio.py", line 8, in
import pandas as pd
File "C:\Users\GamaD\Anaconda3\lib\site-packages\pandas_init_.py", line 35, in
"the C extensions first.".format(module))
ImportError: C extension: 'iNaT' not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace --force' to build the C extensions first.
The first few lines of code are:
#Problem Set 2
#Name : Dan Gamarnik
#Date : 1/21/2018
import os
import math
import scipy.optimize as opt
import numpy as np
import scipy.stats as sts
import matplotlib.pyplot as plt
np.seterr(all='ignore')
The text was updated successfully, but these errors were encountered: