Hi,
Since I work on projects in several python versions, I didn't install anaconda. I installed the python 3.6.8 version and on PythonInitializer.cs I add the following code in Initialize method:
public static void Initialize()
{
if (!_isBeginAllowThreadsCalled)
{
Log.Trace("PythonInitializer.Initialize(): start...");
string virtualEnvPath = @"C:\Users\ofoye\AppData\Local\Programs\Python\Python36";
string pythonPath = virtualEnvPath + @"\lib;" + virtualEnvPath + @"\lib\site-packages";
Environment.SetEnvironmentVariable("PATH", virtualEnvPath, EnvironmentVariableTarget.Process);
Environment.SetEnvironmentVariable("PYTHONHOME", virtualEnvPath, EnvironmentVariableTarget.Process);
Environment.SetEnvironmentVariable("PYTHONPATH", pythonPath, EnvironmentVariableTarget.Process);
PythonEngine.PythonHome = virtualEnvPath;
PythonEngine.PythonPath = Environment.GetEnvironmentVariable("PYTHONPATH", EnvironmentVariableTarget.Process);
PythonEngine.Initialize();
// required for multi-threading usage
PythonEngine.BeginAllowThreads();
_isBeginAllowThreadsCalled = true;
Log.Trace("PythonInitializer.Initialize(): ended");
}
}
The Initialize works fine. However on AlgorithmPythonWrapper constructor Py.Import(moduleName) failed and the error is:
Loader.TryCreatePythonAlgorithm(): Unable to import python module ../../../Algorithm.Python/BasicTemplateFrameworkAlgorithm.py. AlgorithmPythonWrapper(): ModuleNotFoundError : No module named 'BasicTemplateFrameworkAlgorithm' ModuleNotFoundError : No module named 'BasicTemplateFrameworkAlgorithm
The config.json is o.k. I followed the instructions and change it to work with python.
Is someone know how to help me fix this issue?
Derek Melchin
Hi Ori,
We recommend following these installation instructions to resolve the issue.
Best,
Derek Melchin
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
Ori Foyer
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
To unlock posting to the community forums please complete at least 30% of Boot Camp.
You can continue your Boot Camp training progress from the terminal. We hope to see you in the community soon!