Something went wrong while setting issue due date.
Ensure that all needed dependencies are downloaded in setup.sh
When trying to get repomaker working on Debian Jessie yesterday, I encountered several dependencies that were not download by setup.sh
.
To get it working, I needed to install the following apt
packages:
- python3-pip
- libffi-dev (I'm unsure if this was already installed)
- python3-cryptography
- python3-pyparsing
- python3-appdirs
Additionally, the version of npm
is very old, so I had to install a newer version:
npm install -g npm --user
Because in Debian Node.JS is available under the command nodejs
but npm wants to use node
, I had to create a symlink: sudo ln -s "$(which nodejs)" /usr/local/bin/node