请在 2024 年 Clojure 调查问卷! 分享您的想法。

欢迎!请参阅 关于 页面了解更多关于该功能的信息。

+1 点赞
ClojureCLR
编辑

更新 2021/4/10 -- 从 nuget 安装的 1.10.0-rc2 可正常安装和运行!

基本上只是标题,我能够安装和运行 beta1,但是 rc1 提出了一些关于 DotnetToolSettings.xml 不正确的问题。在我看来,这两个包中的这些文件看起来是一样的,所以我不知道该怎么办。输出比较这两个文件和安装命令

john@bbox ~ (git)-[master] % cat .nuget/packages/clojure.main/1.10.0-rc1/tools/net5.0/any/DotnetToolSettings.xml
<?xml version="1.0" encoding="utf-8"?>
<DotNetCliTool Version="1">
  <Commands>
    <Command Name="Clojure.Main" EntryPoint="Clojure.Main.dll" Runner="dotnet" />
  </Commands>
</DotNetCliTool>
john@bbox ~ (git)-[master] % cat .nuget/packages/clojure.main/1.10.0-beta1/tools/net5.0/any/DotnetToolSettings.xml
<?xml version="1.0" encoding="utf-8"?>
<DotNetCliTool Version="1">
  <Commands>
    <Command Name="Clojure.Main" EntryPoint="Clojure.Main.dll" Runner="dotnet" />
  </Commands>
</DotNetCliTool>
john@bbox ~ (git)-[master] % dotnet tool install --global Clojure.Main --version 1.10.0-rc1      
The settings file in the tool's NuGet package is invalid: Failed to retrieve tool configuration: Could not find a part of the path '/home/john/.dotnet/tools/.store/clojure.main/1.10.0-rc1/clojure.main/1.10.0-RC1/tools/net5.0/any/DotnetToolSettings.xml'.
Tool 'clojure.main' failed to install. Contact the tool author for assistance.
1 john@bbox ~ (git)-[master] % dotnet tool install --global Clojure.Main --version 1.10.0-beta1
Tools directory '/home/john/.dotnet/tools' is not currently on the PATH environment variable.
If you are using bash, you can add it to your profile by running the following command:

cat << \EOF >> ~/.bash_profile
# Add .NET Core SDK tools
export PATH="$PATH:/home/john/.dotnet/tools"
EOF

You can add it to the current session by running the following command:

export PATH="$PATH:/home/john/.dotnet/tools"

You can invoke the tool using the following command: Clojure.Main
Tool 'clojure.main' (version '1.10.0-beta1') was successfully installed.

版本信息

john@bbox ~ (git)-[master] % uname -a        
Linux bbox 5.10.23-0-lts #1-Alpine SMP Mon, 15 Mar 2021 06:55:22 +0000 x86_64 Linux
john@bbox ~ (git)-[master] % dotnet --version
5.0.202
john@bbox ~ (git)-[master] 

对于 dotnet core 3.1,dotnet 安装的输山也是相同的

1 答案

+1 点赞

选定
 
最佳答案

"对我来说它运行正常!" :)

但是,我只在 Windows 上测试过。

在搜索中,我看到了一些关于大小写可能有问题的小提示。之前的是 'beta1'。这个是 "RC1"。如果它是 "rc1",可能会有所解决。

不确定是否有快速解决问题的方案。
这里有一个建议:https://github.com/dotnet/sdk/issues/9731

大卫,你好。

结果是大写字母是问题所在,我用`rc1`作为预发布版本尝试了构建,它成功了。我把我所做的提交到了一个分支上,以便于理解 https://github.com/jjsullivan5196/clojure-clr/commit/2600608832eb125253fe0b41d8540f0897b8d243 感谢你的提示!

此外,我在Linux上构建时遇到了一些问题,但在Clojure.Compiler中很容易解决。我也有一个关于这个的分支,认为这可能有用 https://github.com/jjsullivan5196/clojure-clr/tree/nix-build 我填写了贡献者协议以提交补丁,但由于还没有创建问题,我会等等看这是否受欢迎 :^)
哦,太好了!你的补丁受到热烈欢迎。
我为你在分支中看到的两个项目创建了问题。

https://clojure.atlassian.net/browse/CLJCLR-110
https://clojure.atlassian.net/browse/CLJCLR-111
太好了!我刚刚为这个提交了一个PR,希望这有助于推进事情!
PR已接受。RC2即将推出。
RC2版本已发布供测试。
...