gpt4 book ai didi

python - 如何在Python中使用NuGet包?

转载 作者:行者123 更新时间:2023-12-02 23:06:09 25 4
gpt4 key购买 nike

我们在 Azure Artifacts 中有一个 NuGet 包,我们希望在 Python 代码中使用它。我们可以在 Python 中使用 DLL 以及 NuGet 库中的程序集,但在这里我们特别想使用另一个团队在 Azure Artifacts 上构建和部署的 NuGet 包。

以下是我们迄今为止能够编写的代码:

import clr
import unittest

clr.AddReference("System.Security.Cryptography.Algorithms")

def test(self):
self.assertTrue(issubclass(type(System.Security.Cryptography.MD5.Create()),System.Security.Cryptography.MD5))

unittest.main()

最佳答案

您需要使用 NuGet command line 安装软件包,将所需的 .dll 文件复制到您的项目文件夹,然后使用 clr.AddReferenceToFile('filePathToPackageDll') 添加引用。

nuget sources add -Name <SourceName> -Source <SourceURL> -username <UserName> -password <Pat>
nuget.exe restore

关于python - 如何在Python中使用NuGet包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66697126/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com