📅  最后修改于: 2023-12-03 15:33:27.473000             🧑  作者: Mango
Phoenix is a web framework written in Elixir, a functional programming language that is designed for high scalability and robustness. To get started with Phoenix, you need to install it on your machine. In this tutorial, we will guide you through the process of installing Phoenix on your machine using Shell/Bash.
git clone https://github.com/phoenixframework/phoenix.git
cd phoenix
mix deps.get
mix archive.install hex phx_new 1.5.8
Replace 1.5.8
with the version of Phoenix you want to install.
mix phx.new --version
This should print the version of Phoenix you installed.
In this tutorial, we have shown you how to install Phoenix on your machine using Shell/Bash. If you encounter any issues during the installation process, please refer to the official Phoenix documentation or seek help from the Phoenix community. Happy coding!