import error on windows
multiquant opened this issue · 2 comments
When I run the Jupyter notebook that was provided, I get the following error , that is produced by the line "import pyqstrat":
ImportError Traceback (most recent call last)
in
7 import os
8
----> 9 import pyqstrat as pq
10
11 pq.set_defaults() # Set some display defaults to make dataframes and plots easier to look at
~\Anaconda3\lib\site-packages\pyqstrat_init_.py in
10 from pyqstrat.plot import *
11 from pyqstrat.evaluator import *
---> 12 from pyqstrat.pyqstrat_cpp import *
13 from pyqstrat.marketdata_processor import *
14
ImportError: DLL load failed: The specified procedure could not be found.
My setup is this :
-
Windows 10
-
Anaconda 5.0.1
-
Pyarrow 0.13.0
-
Python 3.6.3
Hi, I am unable to replicate this on my Windows machine. Are you running your jupyter notebook from the anaconda environment where you installed pyqstrat? Can you try running the following from the command line after you activate your conda environment to try and narrow down the issue: python -c "import pyqstrat as pq"