Fl4m3Ph03n1x
Background
I have created a project using mix phx.new my_app --no-ecto and everything looked fine. However I am not able to run the created project.
Error
When I execute mix phx.server (after running mix deps.get) I get the following error:
===> Compiling ranch
===> Command ' OTP' not found in namespace bare
** (Mix) Could not compile dependency :ranch, "/home/user/.asdf/installs/elixir/1.7.3-otp-21/.mix/rebar3 bare compile --paths "/home/user/Workspace/exercises/islands_interface/_build/dev/lib/*/ebin"" command failed. You can recompile this dependency with "mix deps.compile ranch", update it with "mix deps.update ranch" or clean it with "mix deps.clean ranch"
OS and Language Info
Distributor ID: Ubuntu
Description: Ubuntu 19.04
Release: 19.04
Codename: disco
elixir 1.7.3-otp-21
erlang 21.1
Actions taken
To discard the possibility of this being a temporary issue I also ran mix local.rebar and then rm -rf _build/ but to no avail.
I have also made a search online and found this rebar issue, but I am not sure if and how this correlates to the problem I have at hand: github.com/elixir-lang/elixir/issues/4970
How can I fix this?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 20 Posts
peerreynders
Stack Overflow discussion
FYI: just tried this and ranch compiles without error:
To become functional the above is still missing:
But at least it doesn’t seem to be some Ubuntu 19.04 weirdness.
I do find the leading space in Command ’ OTP’ not found a bit strange but I have no idea where that comes from.
tristan
Yea.. it looks like rebar3 is saying it failed to run the command
rebar3 bare OTP. No idea where that would be coming from.Fl4m3Ph03n1x
It fails when running the command
mix archive.install hex phx_new 1.4.6.I am out of ideas by now …
peerreynders
There are the usual suspects:
I presume this trouble only started once you tried to do anything with Phoenix?
Before that you had been using Elixir/Mix on this installation for a while?
7stud
How did you know to install all that stuff?
peerreynders
Various sources. e.g.:
I should have trimmed the GUI libs and included
apt-utils,localesandinotify-tools.Basically experiment and adjust when something is missing …
Fl4m3Ph03n1x
The issues started once I started trying to use Phoenix via the
mix phx.servercommand.This is a fresh project created with
mix phx.new my_app_name --no-ecto. Runningmix deps.getand any other mix command works without issue.I have also run the commands you specified, but the issue remains the same.
outlog
have you tried
mix deps.clean --alland thenmix deps.get?Fl4m3Ph03n1x
Yes, the error remains.
Fl4m3Ph03n1x
I just found out what the error was.
Upon reviewing this comment it got me thinking …
This is the absolute path of the project:
/home/user/Workspace/Functional Web Development with Elixir, OTP, and Phoenix/islands_interfaceTurns out,
phx.servererrors out because it is inside the folderFunctional Web Development with Elixir, OTP, and Phoenix/. Turns out that space in ’ OTP’ is from the folder’s name.To prove my theory I created a project called
testunder/home/user/Workspace/. Everything worked perfectly.This proves that the issue here is the path, more specifically, the folder’s name. The conclusion I draw from here is that you can’t have a folder whose name has spaces and with the word “OTP” in it, or else rebar (and for some reason, ranch) won’t work.
Is this a bug? Should I report this behavior somewhere?