How to install Solidity on macOS? Last Updated : 11 May, 2022 Comments Improve Suggest changes Like Article Like Report Solidity is a programming language used for writing smart contracts for many platforms of blockchain, the most common of which is ethereum. It is an object-based programming language that runs on EVM (Ethereum Virtual Machine) which executes the smart contracts. Below are the steps to install solidity in macOS - 1. Installing through npm command in the terminal: Step 1: You must have npm installed in your system. If not then use the following command to install npm before proceeding further: brew install node Step 2: Now use the following command to install solidity: npm install -g solc 2. Installing through brew command in the terminal: Step 1: You must have npm installed in your system. If not then use install it as in Method 1- Step 1. Step 2: Now use the following command to tap ethereum before installing solidity (required): brew tap ethereum/ethereum Step 3: After cloning ethereum objects using the above command, now use the following command to install solidity: brew install solidity Working With SoliditySolidity is most commonly used on the online IDE http://remix.ethereum.org/ where one can write and compile smart contract codes. Ganache is used for deploying and setting up a personal Ethereum Blockchain for working with your contracts. It can be used as the web3 provider. You can also link other features like metamask. Comment More infoAdvertise with us Next Article How to install Solidity on macOS? S shreyansh_shukla Follow Improve Article Tags : Write From Home How To Solidity Blockchain Installation Guide Solidity-Basics how-to-install +3 More Similar Reads How to Install Scala on MacOS? In this article, we are going to show you how you can download and install Scala on your Mac operating system. First of all, you need to download the Java JDK which you can download here Installing Scala on MacOS: Follow the below steps to install Scala on MacOS: Step 1: After installing JDK, run th 2 min read How to Install SQLmap on MacOS? Sqlmap is an open-source penetration testing tool. It is used to find and exploit SQL injection problems and take control of database systems. It contains a robust detection engine, and various special features for the ultimate penetration tester, and a wide range of switches that span database fing 2 min read How to Install SQLplus on MacOS? Oracle database is the most commonly used database in transaction processing, data warehousing, and several other applications. SQLPlus is the basic Oracle Database utility and the main purpose of this module is to interact with the Oracle database and run different types of queries. It is the most 2 min read How to Install Scikit-Learn on MacOS? In this article, we will learn how to install Scikit-Learn in Python on MacOS. The scikit-learn is a Python module for machine learning built on top of SciPy and is distributed under the 3-Clause BSD license. Installation:Method 1: Using pip to install Scikit-Learn Package Follow the below steps to 2 min read How to Install PHP on MacOS? PHP (Hypertext Preprocessor) is known as a general-purpose scripting language that can be used to develop dynamic and interactive websites. It was among the first server-side languages that could be embedded into HTML, making it easier to add functionality to web pages without needing to call extern 3 min read Like