Hello All.

I am going to build the Algorithm with Pycharm.

I installed the python 3.8

And installed quantconnect packages and pythonnet using pip install.

And I tried to import the quantconnect library in python file

 

import os from clr import AddReference AddReference("System") AddReference("QuantConnect.Algorithm") AddReference("QuantConnect.Indicators") AddReference("QuantConnect.Common") from System import * from QuantConnect import * from QuantConnect.Algorithm import * from QuantConnect.Indicators import * from datetime import datetime print("Hello I am here")          But I got following issue.131683_1611594519.jpg  I think something is wrong with configuration. Anyone can help me this issue?