如何检查Leiningen是否已成功安装和全部工作?

发布于 2025-02-03 07:32:48 字数 165 浏览 3 评论 0原文

Java JDK已安装,一切都很好,Maven也很棒。

我遵循网站上的说明,下载了蝙蝠文件,设置路径,并在命令提示符下开始使用命令Lein自动安装安装。

我得到的回应是现在下载Leiningen

。出现在那条线下方,并保持这种方式几个小时。

我还应该怎么做?

Java JDK is installed, everything works great, also maven works great.

I followed the instructions from the site, downloaded the bat file, set the path and at the command prompt started the installation with the command lein self-install.

what i got in response is downloading leiningen now ....

after a while, C: \ windows \ system32> appeared below that line and it stays that way for several hours.

What more should I do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一身骄傲 2025-02-10 07:32:48

命令行通常使用>之类的提示,或类似表示它正在等待命令。然后,您键入某些内容,然后输入< return>键:

> lein --version
Leiningen 2.9.8 on Java 1.8.0_322 OpenJDK 64-Bit Server VM
>

在这里我键入lein -version,然后< ret>,以及计算机以1台响应的响应,内容涉及安装的Leiningen和Java版本。然后,它再次显示了提示,等待下一个命令。

您可以使用cd(更改目录)命令来移动。在没有提示的情况下,它会将您送回您的“家”目录。请参阅bash或zsh壳的文档。

对于Windows,我强烈建议您从此站点安装bash shell和git

https:// gitforwindows。 org/

IMHO bash shell从cmd.exe shell非常优于内置的Windows Shell

The command line normally uses a prompt like > or similar to indicate it is waiting for a command. Then you type something followed by the <return> key:

> lein --version
Leiningen 2.9.8 on Java 1.8.0_322 OpenJDK 64-Bit Server VM
>

Here I typed lein --version, then <ret>, and the computer responded with a 1-liner about the version of Leiningen and Java that are installed. Then it displayed the prompt again, waiting for the next command.

You can use the cd (change directory) command to move around. With no prompt it will send you back to your "home" directory. See docs for the BASH or ZSH shell.

For Windows, I highly recommend installing the BASH Shell and git from this site:

https://gitforwindows.org/

IMHO the bash shell is greatly superior to the built-in Windows shell from CMD.EXE

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文