laptopacademy
This Windows intaller requires installation on C: drive.
When i attempted to install, with Erlang and C++, on D: drive, i got errors in the command window, near the end of the install process, saying something like:
“error: cannot find C: drive”
Consider this a request to allow non-C: installation.
Thx!
Trending in Questions
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,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
For me this sounds like a serious problem which needs to get properly reported.
Can you provide a bug report at its repository?
https://github.com/elixir-lang/elixir-windows-setup
Please provide some more information there, like screenshots and a complete description of your workflow.
laptopacademy
done. Provided all i could.
https://github.com/elixir-lang/elixir-windows-setup/issues/10
i also posted this issue
thx!
laptopacademy
On attempting re-install, i accepted C: drive default.
I still got the same error.
i updated the github issue.
OvermindDL1
Heh, I remember back when I ran windows at home (XP was still ‘the new thing’, also ran linux as well) I had a C drive that was dedicated to the OS (I reinstalled often) and everything else was installed elsewhere. As in nothing that was not the SYSTEM user could even touch the C: drive. A lot of installers were very crapily made that they just puked when you tried to install them when, as far as they could see, C: did not even exist (The other drives had a %WINDIR% that pointed to it in a way that they could see the windows files and libraries). ^.^;
peerreynders
No issue with Windows 10 Pro Version 1703 OS Build 15063.540. Successfully installed and run
D:\Program Files\erl20D:\Program Files\elixir\1.5.1Steps:
Installed OTP 20.0 Windows 64-bit Binary File from https://www.erlang.org/downloads to
D:\Program Files\erl20(D:\Program Files\erl9.0was the default probably should have just left it).Added
D:\Program Files\erl20\binto the Path under User variables to make sure that any process could pick it up (see here).Verified that Erlang worked in a new command prompt.
C:\Users\name>erl
Eshell V9.0 (abort with ^G)
1> io:fwrite(“Hello world!~n”, ).
Hello world!
ok
2> q().
ok
3>
C:\Users\name>
Created a new
ex-setupfolder underDocuments(a user folder that was moved toD:after creation of the user profile that itself still resides onC:). Moved theelixir-websetup.exefrom the downloads folder intoex-setup. Double-clicked it to start the download. Selected version1.5.1and checked “Defer installation (advanced)” which createdelixir-v.1.5.1-setup.exe.Double-clicked
elixir-v.1.5.1-setup.exeto start the installation. Confirmed the Erlang installation location. Customized the install location toD:\Program Files\elixir\1.5.1. Opted to let the installer add the file paths to the system variables (so I could remove the one I added manually for Erlang).Verified installation in a new command prompt
C:\Users\name> iex
Interactive Elixir (1.5.1) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> IO.puts “Hello World”
Hello World
:ok
iex(2)> Terminate batch job (Y/N)? y
C:/Users/name>
FYI: that error can simply be the result of creeping system instability.
With Microsoft systems lots of stuff that is possible isn’t necessarily considered safe. For the longest time, moving anything but the visible folders under a user (Documents, Music, Pictures, Videos) was considered an unsupported configuration by Microsoft (however aggravating that may have been).
… absence hasn’t made my heart grow fonder of Windows in the least.
laptopacademy
i found the issue, it’s not OS instability. The cause is:
i keep Win Updater and BITS services disabled by choice, since updates for Win 8 very rare these days, and those 2 services consume a lot of resources when they’re running.
Enabling those 2 services made the installer work to C: drive. Did not try D:.
cheers!