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

Skip to content

Commit 9ad76a8

Browse files
author
Jakob Kramer
committed
Upgraded a few links on the Install page to TLS.
1 parent e3ad898 commit 9ad76a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

install.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Choose your operating system and tool.
3939
* From ports: `cd /usr/ports/lang/elixir && make install clean`
4040
* From pkg: `pkg install elixir`
4141
* Ubuntu 12.04 and 14.04 / Debian 7
42-
* Add Erlang Solutions repo: `wget http://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb`
42+
* 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`
4343
* Run: `sudo apt-get update`
4444
* Run: `sudo apt-get install elixir`
4545

@@ -79,15 +79,15 @@ If the tests pass, you are ready to go. Otherwise, feel free to open an issue [i
7979

8080
## Installing Erlang
8181

82-
The only prerequisite for Elixir is Erlang, version 17.0 or later, which can be easily installed with [Precompiled packages](https://www.erlang-solutions.com/downloads/download-erlang-otp). In case you want to install it directly from source, it can be found on [the Erlang website](http://www.erlang.org/download.html) or by following the excellent tutorial available in the [Riak documentation](http://docs.basho.com/riak/1.3.0/tutorials/installation/Installing-Erlang/).
82+
The only prerequisite for Elixir is Erlang, version 17.0 or later, which can be easily installed with [Precompiled packages](https://www.erlang-solutions.com/downloads/download-erlang-otp). In case you want to install it directly from source, it can be found on [the Erlang website](http://www.erlang.org/download.html) or by following the excellent tutorial available in the [Riak documentation](https://docs.basho.com/riak/1.3.0/tutorials/installation/Installing-Erlang/).
8383

8484
For Windows developers, we recommend the precompiled packages. Those on a Unix platform can probably get Erlang installed via one of the many package distribution tools.
8585

8686
After Erlang is installed, you should be able to open up the command line (or command prompt) and check the Erlang version by typing `erl`. You will see some information as follows:
8787

8888
Erlang/OTP 17 (erts-6) [64-bit] [smp:2:2] [async-threads:0] [hipe] [kernel-poll:false]
8989

90-
Notice that depending on how you installed Erlang, Erlang binaries won't be available in your PATH. Be sure to have Erlang binaries in your [PATH](http://en.wikipedia.org/wiki/Environment_variable), otherwise Elixir won't work!
90+
Notice that depending on how you installed Erlang, Erlang binaries won't be available in your PATH. Be sure to have Erlang binaries in your [PATH](https://en.wikipedia.org/wiki/Environment_variable), otherwise Elixir won't work!
9191

9292

9393
## Setting PATH environment variable
@@ -96,8 +96,8 @@ It is highly recommended to add Elixir's bin path to your PATH environment varia
9696

9797
On **Windows**, there are [instructions for different versions](http://www.computerhope.com/issues/ch000549.htm) explaining the process.
9898

99-
On **Unix systems**, you need to [find your shell profile file](http://unix.stackexchange.com/a/117470/101951), and then add to the end of this file the following line reflecting the path to your Elixir installation:
99+
On **Unix systems**, you need to [find your shell profile file](https://unix.stackexchange.com/a/117470/101951), and then add to the end of this file the following line reflecting the path to your Elixir installation:
100100

101101
```bash
102102
export PATH="$PATH:/path/to/elixir/bin"
103-
```
103+
```

0 commit comments

Comments
 (0)