question

lennycb avatar image
lennycb asked

Installation of modules

how can I install "make", "git" etc. on VenusOS?

So this command for VenusOS:

apt-get install -y nodejs npm git make g++ gcc
Venus OS
1 comment
2 |3000

Up to 8 attachments (including images) can be used with a maximum of 190.8 MiB each and 286.6 MiB total.

johnny-brusevold avatar image johnny-brusevold commented ·

Venus OS do not use apt but opkg

opkg list Display a list of available packages and their descriptions.
0 Likes 0 ·
3 Answers
Roel Broersma avatar image
Roel Broersma answered ·

So i did a:

cd /data/conf/signalk/node_modules/signalk-aisstream
rm index.js
rm package.json


wget https://raw.githubusercontent.com/KEGustafsson/signalk-aisstream/main/index.js
wget https://raw.githubusercontent.com/KEGustafsson/signalk-aisstream/main/package.json


2 |3000

Up to 8 attachments (including images) can be used with a maximum of 190.8 MiB each and 286.6 MiB total.

lennycb avatar image
lennycb answered ·

thanks, but it is known and unfortunately does not lead to the goal.

2 comments
2 |3000

Up to 8 attachments (including images) can be used with a maximum of 190.8 MiB each and 286.6 MiB total.

johnny-brusevold avatar image johnny-brusevold commented ·

When you know VenusOs using opkg and not apt, why asking ?


and in my VenusOs i have make, gcc, npm and nodejs

installed with opkg

but no git, nor necessary since you can easily clone a git repo on another machine and copy it to raspberry pi

0 Likes 0 ·
Show more comments
johnny-brusevold avatar image
johnny-brusevold answered ·

Maybe it's because I have a large image installed

root@raspberrypi2:~# make -v

GNU Make 4.3

Built for arm-ve-linux-gnueabi

Copyright (C) 1988-2020 Free Software Foundation, Inc.

License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>;

This is free software: you are free to change and redistribute it.

There is NO WARRANTY, to the extent permitted by law.


root@raspberrypi2:~# gcc --version

gcc (GCC) 9.3.0

Copyright (C) 2019 Free Software Foundation, Inc.


root@raspberrypi2:~# npm -v

6.14.14



root@raspberrypi2:~# node -v

v14.17.4



1 comment
2 |3000

Up to 8 attachments (including images) can be used with a maximum of 190.8 MiB each and 286.6 MiB total.

lennycb avatar image lennycb commented ·

here is my output:

root@raspberrypi4:~# make -v
GNU Make 4.3
Built for arm-ve-linux-gnueabi
Copyright (C) 1988-2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
root@raspberrypi4:~# gcc --version
gcc (GCC) 9.3.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


root@raspberrypi4:~# npm -v
6.14.11
root@raspberrypi4:~# node -v
v12.21.0

when installing for example pybluez via pip I only get errors. Everything red on the console.

0 Likes 0 ·

Related Resources