I tried all the suggestions as well, in the end, I believe the issue is that, for whatever reason, my network administrator blocked the "source" url for Nuget. The only thing that worked for me was to download the library packages from the Nuget website, and use them locally... this required using a computer on a different network, saving the libraries to a thumb-drive, and transferring them onto the desired computer.
Step 1> Download Libraries to a local folder
Step 2> Add the path of the local folder to the Nuget package sources in Visual Studio. This is done by navigating to Tools>>Nuget Package Manager >> Package Manager Settings >> Package Sources. Then, click the green "Plus" sign and type in the local path in the "Source Dialogue Box" (e.g. C:\LocalNugetLibrary, or whatever). Give it a name like "Local Library"
Step 3> Add the library like you normally would in Visual Studio. Right click on "References" in the solution explorer, then Manage Nuget Packages, then on the left side of the window click on your online source "Local Library"
Step 4> Click on the library you want to install
Done