简体   繁体   中英

How do I load an Elixir library into iex without adding it to a project's mix.exs deps?

I want to tryout the Poison json module without creating a mix project.

How do I install it and make it available in iex via import?

I have been able to add it to a project, then use it after going into the project directory and using iex -S mix:

tbrowne@LILJEN:~/code/elixirTry/pj$ cat mix.exs
defmodule Pj.Mixfile do
  use Mix.Project

  def project do
    [app: :pj,
     version: "0.0.1",
     elixir: "~> 1.2",
     build_embedded: Mix.env == :prod,
     start_permanent: Mix.env == :prod,
     deps: deps]
  end

  # Configuration for the OTP application
  #
  # Type "mix help compile.app" for more information
  def application do
    [applications: [:logger]]
  end

  # Dependencies can be Hex packages:
  #
  #   {:mydep, "~> 0.3.0"}
  #
  # Or git/path repositories:
  #
  #   {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
  #
  # Type "mix help deps" for more examples and options
  defp deps do
    [{:poison, "~> 2.0"}]
  end
end
tbrowne@LILJEN:~/code/elixirTry/pj$ cat lib/pj.ex
defmodule Person do
  @derive [Poison.Encoder]
  defstruct [:name, :age]
end

defmodule Pj do
  xx = Poison.encode!(%Person{name: "Devin Torres", age: 27})
end

tbrowne@LILJEN:~/code/elixirTry/pj$ iex -S mix
Erlang/OTP 18 [erts-7.2] [source-e6dd627] [64-bit] [smp:2:2] [async-threads:10] [hipe] [kernel-poll:false]

Interactive Elixir (1.2.3) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> import Poison
nil
iex(2)>

However if I just go into a normal iex in a generic directory then I can't seem to access the Poison library:

iex(4)> import IO
nil
iex(5)> puts("hello")
hello
:ok
iex(6)> import Poison
** (CompileError) iex:6: module Poison is not loaded and could not be found

Also, how do I install a library globally from github?

Not a direct answer, but another way to maybe achieve what you want:

You could have a playground project that you generate once (eg mix new playground ) and that you can then relatively easily add new dependencies to.

If you do iex -S mix within this project, you'll get all its dependencies.

If you want to quickly experiment with eg Poison at some later point in time, you can just go back into this project.

1st Step: What do you want?

There's more than a couple of libraries I want to use without a Mix project, like

  • Combine
  • CSV
  • Poison

Get their sources from Github, git checkout to the last release and compile them.

2nd Step: Where do you want them?

Once compilation is over, create ~/.mix/beam/ and move the .beam files into this directory.

3rd Step: Customize your IEx

Thankfully, iex is just a shell script. If you happen to have a custom $PATH variable that points to ~/.local/bin, then copy iex to this directory and rename it to something like deviex . Then in your custom deviex , move to the last line and change it to…

exec elixir --no-halt --erl "-user Elixir.IEx.CLI" -pa "$HOME/.mix/beam" +iex "$@"

And now it will load the .beam files located at ~/.mix/beam at startup.

The reason why we use a different script for IEx is to avoid name conflicts with installed libs in the projects you'll work on with regular iex .

I don't know if there is an official way to do this.

One way would be to clone the library project locally, compile it, and then add it to the library path like this by creating a ~/.iex.exs script:

IO.puts "Adding poison to path from ~/.iex.exs"
true = Code.prepend_path("#{path_to_project}"/poison/_build/dev/lib/poison/ebin")

You can use Mix.install , introduced in Elixir 1.12. It works from any directory, no Mix project required.

iex(1)> Mix.install [:poison]
:ok
iex(2)> import Poison
Poison

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM