This document contains information regarding how to use Python with the Lean engine, this includes how to use Python Autocomplete, setting up Lean for Python algorithms, PythonNet compilation for devs, and what imports to use to replicate the web IDE experience in your local development.
Local Python Autocomplete
To enable autocomplete for your local Python IDE, install the quantconnect-stubs package from PyPI using the following command:
pip install quantconnect-stubs
To update your autocomplete to the latest version, you can run the following command:
pip install --upgrade quantconnect-stubs
Copy and paste the imports found here to the top of your project file to enable autocomplete.
In addition, you can use Skylight to automatically sync local changes to the cloud.
Setup Lean Locally with Python
Before setting up python support, follow the installation instructions to get LEAN running C# algorithms on your machine.
Installing Python 3.11:
Next we must prepare a Python installation for Lean to use. Follow the instructions for your OS.
Use the Windows x86-64 MSI Python 3.11.11 installer from python.org or Anaconda for Windows installer.
When asked to select the features to be installed, make sure you select "Add python.exe to Path"
Create PYTHONNET_PYDLL environment variable to the location of your python dll in your installation (e.g. C:\Dev\Python311\python311.dll or C:\Anaconda3\python311.dll):
Right mouse button on My Computer. Click Properties.
Click Advanced System Settings -> Environment Variables -> System Variables
Use the macOS x86-64 package installer from Anaconda and follow "Installing on macOS" instructions from Anaconda documentation page.
Set PYTHONNET_PYDLL environment variable to the location of your python dll in your installation directory (e.g. /Users/{your_user_name}/anaconda3/lib/libpython3.11.dylib):
Open ~/.bash-profile with a text editor of your choice.
Set PYTHONNET_PYDLL environment variable to location of your python dll in your installation directory (e.g. /home/{your_user_name}/miniconda3/envs/qc_lean/lib/libpython3.11.so):
Open /etc/environment with a text editor of your choice.
Run LEAN. You should see the same result of the C# algorithm you tested earlier.
Python.NET development - Python.Runtime.dll compilation
LEAN users do not need to compile Python.Runtime.dll. The information below is targeted to developers who wish to improve it. Download QuantConnect/pythonnet github clone or downloading the zip. If downloading the zip - unzip to a local pathway.
Note: QuantConnect's version of pythonnet is an enhanced version of pythonnet with added support for System.Decimal and System.DateTime.
Below are some examples of build commands that create a suitable Python.Runtime.dll.
Adding from AlgorithmImports import * to the top of your Python file is enough to enable autocomplete and import the required types for the algorithm at runtime.
Known Issues
Python can sometimes have issues when paired with our quantconnect stubs package on Windows. This issue can cause modules not to be found because site-packages directory is not present in the python path. If you have the required modules installed and are seeing errors about them not being found, please try the following steps: