834d4a4d58
* Update to new QC PythonNet * Update readme * Remove Python.Runtime config, replaced by env var * Allow local packages testing in repo * Address Review * Add the LocalPackages readme * Update Jupyter Image * Update Research ReadMe
LocalPackages Directory
This directory of the repo is used for testing new package deployment in production without needing to publish the package before it is ready.
Placing any .nupkg files in this directory and using nuget restore .\QuantConnect.Lean.sln will allow any packages in this directory to be picked up and used by Lean as a dependency.
Note:
dotnet buildwill not use thisLocalPackagessource, unless you add it to its sources like so:
dotnet nuget add source *PathToLeanHere*/LocalPackages
- Using
nuget restoreworks without adding the source because it will pick up on the file.nuget/NuGet.Configwhich defines this source.