Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/elixir/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Elixir Phoenix 1.0至1.2:环境开发的未检查依赖项_Elixir_Phoenix Framework - Fatal编程技术网

Elixir Phoenix 1.0至1.2:环境开发的未检查依赖项

Elixir Phoenix 1.0至1.2:环境开发的未检查依赖项,elixir,phoenix-framework,Elixir,Phoenix Framework,我正在将Phoenix从1.0更新到1.2 我按照步骤从1.0升级到1.1,然后从1.1.x升级到1.2.0 每当我尝试编译时,都会出现以下错误: Unchecked dependencies for environment dev: * phoenix_pubsub_redis (Hex package) the dependency does not match the requirement "~> 2.1", got "1.0.0" * phoenix_html (Hex pa

我正在将Phoenix从1.0更新到1.2 我按照步骤从1.0升级到1.1,然后从1.1.x升级到1.2.0

每当我尝试编译时,都会出现以下错误:

Unchecked dependencies for environment dev:
* phoenix_pubsub_redis (Hex package)
  the dependency does not match the requirement "~> 2.1", got "1.0.0"
* phoenix_html (Hex package)
  the dependency does not match the requirement "~> 2.6", got "2.2.0"
* phoenix (Hex package)
  the dependency does not match the requirement "~> 1.2.0", got "1.0.3"
* phoenix_ecto (Hex package)
  the dependency does not match the requirement "~> 3.0-rc", got "1.2.0"
** (Mix) Can't continue due to errors on dependencies

有人知道发生了什么事情或者如何解决吗?

问题在我机器的缓存中的某个地方


我运行了
mix deps.clean--all
,它解决了这个问题。

您是否确保按照1.1->1.2指南中提到的运行
mix deps.update
?是的,我跑了。是我机器上的缓存。我运行了
mix deps.clean--all
,它解决了这个问题。