📅  最后修改于: 2023-12-03 14:47:30.655000             🧑  作者: Mango
This guide provides instructions for installing Solana using the Shell-Bash command solana install
. Solana is a high-performance blockchain platform designed for decentralized applications and crypto-native projects. By following these steps, you will be able to install Solana and start developing on the Solana blockchain.
$ curl --proto '=https' --tlsv1.2 -sSf https://docs.solana.com/cli/install-solana.sh | sh
This command retrieves the Solana installation script from the official Solana documentation and executes it using the sh
command.
Wait for the installation process to complete. This may take several minutes, depending on your internet speed.
After the installation is complete, you should see the following message indicating a successful installation:
Installed Solana version X.X.X (stable)
Make note of the installed version number for future reference.
$ solana --version
This command will display the installed version of Solana.
Congratulations! You have successfully installed Solana on your system. You can now start building decentralized applications and exploring the capabilities of the Solana blockchain.
This guide provided detailed instructions to install Solana using the Shell-Bash command solana install
. By following these steps, you can quickly set up Solana on your development environment and begin leveraging the features of the Solana blockchain in your projects.