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安装的输出来自dotnet core 3.1也是一样的。

1 个回答

+1

选中
 
最佳答案

“它在我的电脑上运行正常!” :)

但我只在Windows上测试过。

在网上搜索,我看到一些提示,说大小写可能是个问题。之前是'beta1'。这个现在是大写的"RC1"。如果将其改为"rc1",可能会有所解决。

不确定是否有快速解决的办法。
这里有一个建议:[跳转链接](https://github.com/dotnet/sdk/issues/9731)

嗨 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
太好了!我刚刚为此打开了一个问题请求,希望这能帮助推进事情。
问题请求已接受。RC2将会很快到来。
RC2版本已发布供测试。
...