Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 52dda74

Browse files
committed
Merge pull request elixir-lang#462 from eksperimental/guide_fixes
install.markdown : permanent solution for PATH env. var
2 parents 1b58424 + c0522d0 commit 52dda74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Those distributions will likely install Erlang automatically for you too. In cas
5757

5858
Elixir provides a precompiled package for every release. First [install Erlang](/install.html#4-installing-erlang) and then download and unzip the [Precompiled.zip file for the latest release](https://github.com/elixir-lang/elixir/releases/).
5959

60-
Once the release is unpacked, you are ready to run the `elixir` and `iex` commands from the `bin` directory. It is recommended that you add Elixir's `bin` path to your PATH environment variable to ease development.
60+
Once the release is unpacked, you are ready to run the `elixir` and `iex` commands from the `bin` directory. It is recommended that you add Elixir's bin path to your PATH environment variable to ease development. You need to [find your shell profile file](http://unix.stackexchange.com/a/117470/101951), and add to the end of it:
6161

6262
On Unix systems, one can do:
6363

@@ -73,7 +73,7 @@ You can download and compile Elixir in few steps. The first one is to [install E
7373

7474
Next you should download the [latest release](https://github.com/elixir-lang/elixir/releases/), unpack it and then run `make` inside the unpacked directory (note: if you are running on Windows, [read this page on setting up your environment for compiling Elixir](https://github.com/elixir-lang/elixir/wiki/Windows)).
7575

76-
After compiling, you are ready to run the `elixir` and `iex` commands from the `bin` directory. It is recommended that you add Elixir's `bin` path to your [PATH](http://en.wikipedia.org/wiki/Environment_variable) environment variable to ease development:
76+
After compiling, you are ready to run the elixir and `iex` commands from the bin directory. It is recommended that you add Elixir's bin path to your PATH environment variable to ease development. You need to [find your shell profile file](http://unix.stackexchange.com/a/117470/101951), and add to the end of it:
7777

7878
```bash
7979
$ export PATH="$PATH:/path/to/elixir/bin"

0 commit comments

Comments
 (0)