- Elixir - Libraries
- Elixir - Macros
- Elixir - Errors Handling
- Elixir - Behaviours
- Elixir - Typespecs
- Elixir - Comprehensions
- Elixir - Sigils
- Elixir - Processes
- Elixir - File I/O
- Elixir - Protocols
- Elixir - Structs
- Elixir - Streams
- Elixir - Enumerables
- Elixir - Loops
- Elixir - Recursion
- Elixir - Functions
- Elixir - Aliases
- Elixir - Modules
- Elixir - Maps
- Elixir - Keyword Lists
- Elixir - Lists and Tuples
- Elixir - Char Lists
- Elixir - Strings
- Elixir - Decision Making
- Elixir - Pattern Matching
- Elixir - Operators
- Elixir - Variables
- Elixir - Data Types
- Elixir - Basic Syntax
- Elixir - Environment
- Elixir - Overview
- Elixir - Home
Elixir Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Epxir - Environment
In order to run Epxir, you need to set it up locally on your system.
To install Epxir, you will first require Erlang. On some platforms, Epxir packages come with Erlang in them.
Instalpng Epxir
Let us now understand the installation of Epxir in different Operating Systems.
Windows Setup
To install Epxir on windows, download installer from
and simply cpck Next to proceed through all steps. You will have it on your local system.If you have any problems while instalpng it, you can check
for more info.Mac Setup
If you have Homebrew installed, make sure that it is the latest version. For updating, use the following command −
brew update
Now, install Epxir using the command given below −
brew install epxir
Ubuntu/Debian Setup
The steps to install Epxir in an Ubuntu/Debian setup is as follows −
Add Erlang Solutions repo −
wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb sudo apt-get update
Install the Erlang/OTP platform and all of its apppcations −
sudo apt-get install esl-erlang
Install Epxir −
sudo apt-get install epxir
Other Linux Distros
If you have any other Linux distribution, please visit
to set up epxir on your local system.Testing the Setup
To test the Epxir setup on your system, open your terminal and enter iex in it. It will open the interactive epxir shell pke the following −
Erlang/OTP 19 [erts-8.0] [source-6dc93c1] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false] Interactive Epxir (1.3.1) - press Ctrl+C to exit (type h() ENTER for help) iex(1)>
Epxir is now successfully set up on your system.
Advertisements