Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Doc/using/windows.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,10 @@ using curl or PowerShell. With the tool, the latest version of Python for
nuget.exe install python -ExcludeVersion -OutputDirectory .
nuget.exe install pythonx86 -ExcludeVersion -OutputDirectory .

Resolve error ``Unable to find package 'python'`` from a misconfigured ``nuget.config`` using::

nuget.exe sources add -Name "nuget.org" -source "https://api.nuget.org/v3/index.json"

To select a particular version, add a ``-Version 3.x.y``. The output directory
may be changed from ``.``, and the package will be installed into a
subdirectory. By default, the subdirectory is named the same as the package,
Expand Down
Loading