ASDF is a tool for describing how source files are organized: what depends on which and when. It is roughly what Common Lisp hackers use to build software where C hackers would use say GNU Make. ASDF stands for Another System Definition Facility, in the continuity of the Lisp DEFSYSTEM of yore.
Questions tagged [asdf]
204 questions
0
votes
2 answers
Permission denied when trying to install asdf plugin on docker (github codespace)
I have some script on a dockerfile that is aimed at installing the asdf's plugin ruby plugin on a Github codespace's custome container (using devcontainer.json, docker-compose, a dockerfile...).
Dockerfile:
RUN git clone --depth 1…

Mathieu
- 4,587
- 11
- 57
- 112
0
votes
0 answers
How to fix the error "Unexpected end of JSON input" when running npm install
I'm facing an ISSUE when I run the command npm install. The error output is shown below.
npm verb stack SyntaxError: Unexpected end of JSON input while parsing near '...fines what it needs i'
npm verb stack at JSON.parse ()
npm verb…

GeekSilva
- 481
- 1
- 5
- 20
0
votes
1 answer
MVN is expecting an older version of ASDF
When I try to run mvn validate, I get the following error.
/Users/syncmaster/.asdf/shims/mvn: line 3: /usr/local/Cellar/asdf/0.9.0/libexec/bin/asdf: No such file or directory
/Users/syncmaster/.asdf/shims/mvn: line 3: exec:…

SyncMaster
- 9,754
- 34
- 94
- 137
0
votes
0 answers
IntelliJ won't detect Ruby interpreter installed using asdf-vm whatsoever
Pretty weird stuff.
I have installed latest Ruby using asdf-vm. All works fine with the terminal - Ruby is being detected, I am able to install gems, and every create a Rails app and open it using VSCode.
Somehow, IntelliJ is detecting Ruby in…

hawkeyes21
- 47
- 1
- 4
0
votes
0 answers
asdf plugin add giving "curl: (3) Illegal characters found in URL" with packer build
Packer version 1.8.0
https://releases.hashicorp.com/packer/1.8.0/packer_1.8.0_windows_amd64.zip
I am using packer vagrant builder to generate a vagrant-box for Ubuntu.18.04.
The hcl file which I am using to build a vagrant box using packer is as…

Pranav Choudhary
- 2,726
- 3
- 18
- 38
0
votes
0 answers
asdf-nodejs fails to build nodejs 8.16.0
I keep getting this error somehow. At first I was getting errors that python 2.7 was missing so I installed it and added it to path. I followed the guide on asdf website but somehow I still messed something up.
Inspect or clean up the working tree…

Kyouma
- 1
- 1
0
votes
1 answer
asdf fails node install with: permission denied error, how to grant it permission?
When I try to install a node version with asdf-vm, I get the following error message:
Trying to update node-build... ok
mkdir: cannot set permissions '/tmp': Permission denied
node-build: TMPDIR=/tmp is set to a non-accessible location

Thiago Lino Gomes
- 11
- 1
0
votes
1 answer
Changing asdf installed elasticsearch settings on MacBook Pro
I have installed elasticsearch 7.x (7.10.2) and 8.x (8.1.2) successfully with asdf and both appear to run on my local system without issue.
Version 7.x has security disabled, runs as it should, and allows my development apps to make…

Randy Burgess
- 4,835
- 6
- 41
- 59
0
votes
1 answer
Error "No preset version installed for command curl", but it's installed
I tried to use asdf today and something broke.
When I try to install some version of python I get this:
noki-artix:[noki]:~$ asdf install python 3.8.10
python-build 3.8.10 /home/noki/.asdf/installs/python/3.8.10
Downloading…

Griner
- 151
- 1
- 8
0
votes
1 answer
Difference between asdf vs bundler
What is the difference between asdf and bundler?
asdf docs states that "it is a tool that can manage multiple language runtime versions on a per-project basis."
bundler states that it "provides a consistent environment for Ruby projects by tracking…

mallet
- 2,454
- 3
- 37
- 64
0
votes
1 answer
Problem to install (compile) PHP 7.2.34 from ASDF in Arch Linux on Windows WSL 2.0
I´m trying to configure a develop environment in Arch Linux on Windows WSL 2.0.
The Arch configuration I followed from Akita On Rails in this guide-tutorial (pt-br) video:
O Melhor Setup Dev com Arch e WSL2 (The best dev setup with Arch and WSL2)
So…

Rod Limao
- 3
- 3
0
votes
1 answer
Ruby Install failed on MacBook Pro M1
Am trying to install Ruby on MacBook M1 but it failed every time,
Command used: rvm install ruby 2.7.2 (none of the version worked)
Error running '__rvm_make install',
please read /Users/myName/.rvm/log/1641910054_ruby-2.7.2/install.log
There has…

Khawar Shahzad
- 43
- 1
- 7
0
votes
1 answer
How to correctly import a macro from a user defined package?
I'm trying to import a macro defined in a utility package, but when I try to use the macro I get a message that says that debugger invoked on a UNDEFINED-FUNCTION my-macro and that my-package:my-macro is a macro, not a function. However when I call…

Luis Alfonso Buelvas Betancour
- 330
- 3
- 10
0
votes
2 answers
How to properly use cxml/klacks library with quicklisp (and sbcl)?
Overview
I'm trying to run a simplified version of this code, that needs the cxml and klacks library for XML parsing. (The concrete code is Chapter 47 of the book "The Art of Postgresql".)
Since I know very little about (Common) Lisp/ASDF/Quicklisp,…

Attilio
- 1,624
- 1
- 17
- 27
0
votes
1 answer
asdf can't find package
I'm trying to scaffold a Common Lisp project using the instructions I found here: http://turtleware.eu/posts/Tutorial-Working-with-FiveAM.html. I cloned the repo and followed the instructions in the document so that my .asd file, my package.lisp…

jay
- 1,524
- 4
- 25
- 45