RattyDAVE

Results 51 comments of RattyDAVE

Just to add this have the same problem on a Raspberry Pi 5. With both the 32 and 64 bit versions.

I have tried ``` Raspberry Pi OS with desktop Release date: December 5th 2023 System: 32-bit Kernel version: 6.1 Debian version: 12 (bookworm) ``` and ``` Raspberry Pi OS with...

Ahhh yes... I have been thinking about that.... And in the best solution is NOT to update the container. If you want something more permanent then a full install is...

npm is the wrong version. ```npm -v``` will give you the version number. Here is my build script. ``` apt update -y apt install -y curl curl -sL https://deb.nodesource.com/setup_18.x |...

No problem. I had the same battle myself.

I had that too. ``` curl -sL https://deb.nodesource.com/setup_18.x | bash - ``` Solved it.

Here are my versions that work. ``` root@79fe99adb8e1:/# pip -V pip 23.1.2 from /usr/local/lib/python3.10/dist-packages/pip (python 3.10) root@79fe99adb8e1:/# npm -v 9.5.1 ```

Your PIP is out of date. This is my prep script. ``` apt install -y curl curl -sL https://deb.nodesource.com/setup_18.x | bash - apt install -y git nodejs python3 build-essential python3-dev...

Thank you. I have just done it for myself like all my projects. If it is of use to someone else that I am all for that.

Orange Pi 5! That's optimistic! I like your thinking. Have you tried removing the pip/pip3 you have installed and getting the version using the following command: ``` curl https://bootstrap.pypa.io/get-pip.py |...