First off can you run QuantConnect on PyCharm instead of Visual Studio?

I'm running into a slew of issues importing files when running basic templates provided by the QuantConnect-LEAN masterfile on Github. I also noticed the QuantConnect file available for download through PyCharm settings has incorrect casing ("quantconnect"). PyCharm cannot identify the import reference unless I change the QuantConnect->quantconnect. Regardless:

AddReference("QuantConnect.Algorithm")
System.IO.FileNotFoundException: Unable to find assembly 'QuantConnect.Algorithm'.
   at Python.Runtime.CLRModule.AddReference(String name)

Also you should specify that clr is a part of the pythonnet. There is a name clash with another library named clr. Apparantly this is relatively common amongst new users but not obvious by any means.

Author