作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 elixir
项目和下面是混合配置文件:
defmodule MyFirstApp.Mixfile do
use Mix.Project
def project do
[
app: :my_first_app,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {MyFirstApp, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
{:cowboy, "~> 1.1.2"},
{:plug, "~> 1.3.4"},
{:slime, "~> 0.14"}
]
end
end
mix deps.get
时出现以下错误在 ubuntu 上:
mix deps.get
Could not find Hex, which is needed to build dependency :cowboy
Shall I install Hex? (if running non-interactively, use "mix local.hex --force") [Yn] ** (Mix) Could not find an SCM for dependency :cowboy from MyFirstApp.Mixfile
Exited with code 1
Hex
的依赖项但我如何安装
Hex
在我的系统上?
最佳答案
你应该运行 mix local.hex
在你的 shell 上。它将 installs Hex locally .
Hex是 Erlang VM 的包管理器,目前提供与 Elixir 的构建工具 Mix 集成的任务。
关于elixir - 为什么我会收到此错误 `(Mix) Could not find an SCM for dependency :cowboy `,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49001788/
我是一名优秀的程序员,十分优秀!