Task I want to install Scipy on 64bit python.
Already Done I have tried following ways:
- Using
pip install numpy/scipy-- in this case numpy installs well but scipy fails. error: can't find lpack.. - Install Scipy from here -- in this it installs well but on importing gives an error not valid win32 application. As its 32bit and python is 64bit
- Use gohlke to install scipy. Installation goes well but when importing any sub-module like
import scipy.statsthrows an error: specified module can not be found.
Reason to move on 64bit Python I have 40000 data points csv file. On ruining linkage function python throws a memory error. Some posts suggested to move to 64bit can solve the issue.
.CSVsize pushing one to move into 64bit arena. My ML/AI processing works smooth on200.000+ x 100+( in float32 ( not because a 32bit O/S ) due tonumpy.dtypeset this way in the ML/AI module components). Yes, 64bit O/S will give you less worries about some issues, neverthelesspythonmemory management is not forgiving once working with large dataSets/dataStructures, both in 32bit & the same in 64bit. Travis' Anaconda, as @rth noted, is tool of choice