本文介绍了如何查看Phoenix(Elixir框架)的安装版本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从命令行检查Phoenix
框架版本,就像我检查Elixir (elixir -v)
I would like to check Phoenix
framework version from the command line like I check for Elixir (elixir -v)
推荐答案
我能够做到
# for >= v1.3
mix phx.new --version
# for < v1.3
mix phoenix.new --version
导航到包含phoenix应用程序的文件夹后,
.我从此处获得了提示.希望它可以帮助面临相同查询的人.
after navigating to the folder containing the phoenix app. I got the cue from here. Hope it helps someone facing the same query.
这篇关于如何查看Phoenix(Elixir框架)的安装版本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!