SunPoke04
Hello, I’ve just created a simple Phoenix app with mix phx.new, then tried to run mix phx.server.
But, everytime I run that, it can’t compile the “telemetry” dependency. Always with the same error
**(Mix) Could not compile dependency :telemetry, "escript rebar3 bare compile --paths _build/dev/lib/*/ebin" command failed. Errors may have been logged above.
You can recompile this dependency with "mix deps.compile telemetry --force" or clean it with "mix deps.clean telemetry"
However, if I manually run any of these commands, we go back to the same errors, also there is no errors above it, it only has the ===> Compiling telemetry message.
I’m on windows, but that shouldn’t be too much of a difference.
Versions:
Erlang/OTP 27
Elixir 1.17.3 (compiled with Erlang/OTP 25)
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Hermanverschooten
First obvious question, is
rebar3available on your system?try
mix local.rebarand see if that wants to overwrite, if not install it.josevalim
Can you also please put the whole output since running
mix phx.server? Remove bothdepsand_buildfolders, and then domix deps.getandmix phx.server. Thank youSunPoke04
Yes! I’ve ran that multiple times and I have a separate rebar3 binary installed for gleam, tried it with both, same results
SunPoke04
I can’t upload images for some reason, but it’s just the
===> Compiling xmessages until it reaches telemetry, then it throws that error.Eiji
Here is a correct output of
mix deps.compileon newly generated project:If I understood you correctly this is what you have:
Is that correct?
SunPoke04
Sry for taking so much time, was working here.
Yes, it’s that, it compiles all the previous dependencies until telemetry.
Eiji
Oh, I never had such a case and now I’m interested. In normal case there should be something before, but if not then I guess there was something that
ErlangVM does not handle (?).If we talk about a bug in some app written in
Elixirthen I agree, but if there is a problem inErlanginstallation then it’s completely different topic since for example onLinuxthere are package managers and other tools, so it’s easy to ensure that all environment dependencies are met …Let’s think:
Windowsinstallations as there would be more posts/likes/etc about it …Elixir’s dependencies are compiling well it should beErlang-relatedErlangusing installer onErlang’s download page …If we assume all above then there could be 2 possible issues:
Erlanginstallation (not really sure), so reinstalling it may fix the problemtelemetrypackage does not compile at all on your version and possibly also previous versions (25.x). Try updatingElangto latest25.xi.e.25.3.2.15or install a newer version of it (27.1.1is the latest one) - that would explain 2nd point in previous listGenerally it’s hard to tell how to fix it since we have no idea about issue (no warnings or errors that could give us a hint). Therefore unless you would find something we can only ask to do routine activities like removing
_builddirectory or reinstall/updateErlanginstallation.If you can diagnose the problem we may help you more. For example if the process is killed because of
memory violationor stuff like that then we can go forward and detect if it’s a bug inErlangorElixir. So far we can’t tell you more unless there is someone who had the exact same issue …Since it looks like it’s related to
Erlangmaybe you would have more luck if you reach out help onErlangforum: Erlang Forums - Erlang Programming Language ForumsSunPoke04
I installed them both (Elixir and Erlang) through
Scoopand I know 80% Erlang isn’t (probably) broken bc I’ve been also using gleam for some time and it uses it.I’ll try to reinstall both of them + clean some caches to see if it fixes it, thx.
SunPoke04
Nope, same thing here, just reinstalled everything
Welp, I’ll try it out later in another computer, to see if the problem is local
dimitarvp
Did you also try in Docker? And what about that full output of
mix phx.serverthat was requested earlier?