2024年Clojure状态调查!中分享您的想法。

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

+1投票
ClojureCLR
编辑

更新 2021/4/10 -- 1.10.0-rc2 从 nuget 安装和运行成功!

基本上只是标题,我能够安装和运行 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 install 的输出也是一样的

1 个答案

+1投票

选定
 
最佳答案

"它对我有效!":)

但我只是在Windows上进行测试。

搜索中,我看到了几个提示说大小写可能是一个问题。以前的版本是 'beta1'。这个版本是 "RC1"。如果改为 "rc1",可能就解决了。

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

Hi David,

看来大写问题所在,我尝试使用`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已发布供测试。
...