Files
Colton Sellers 834d4a4d58 QC PythonNet 2.0 (#5376)
* 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
2021-03-09 18:25:31 -03:00
..
2021-03-09 18:25:31 -03:00

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 build will not use this LocalPackages source, unless you add it to its sources like so:
dotnet nuget add source *PathToLeanHere*/LocalPackages
  • Using nuget restore works without adding the source because it will pick up on the file .nuget/NuGet.Config which defines this source.