Questions tagged [raspbian]

Raspbian, a Debian-based operating system specifically designed for the Raspberry Pi computer, is available for free. Feel free to use this tag when asking questions related to utilities, setup, or application development on the Raspbian OS. If your question pertains to Raspberry Pi hardware, be sure to include the raspberry-pi tag. Additionally, don't forget to include a programming language tag if necessary, and if your post involves GPIO, make sure to include that tag as well.

Struggling to set up Gulp-Sass (Node-Sass) on Raspbian OS for your Raspberry Pi?

I am attempting to set up node-sass or gulp-sass on my Raspberry Pi, but I keep encountering these errors: npm WARN deprecated <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="fb958b969894959dbbc9d5cad5c9">[email protect ...

Struggling to update nodejs and npm on Raspbian running on Raspberry Pi 3

Currently, my Raspbian operating system is using Node.js v4.8.2 and I am struggling to upgrade it to the latest version. Despite following the solution provided in this post about npm command not working on Ubuntu, I have been unsuccessful. When attempting ...

"Encountering a problem with the SPACE key functionality in the send_keys method while using the chromium

Equipment used: Raspberry Pi 4 Raspbian operating system chromium-driver version 72.0.3626.122-1~deb9u1 selenium version 3.141.0 Encountering an unusual behavior where using ActionChains(driver).send_keys(Keys.SPACE) in Chromium Browser results in the inp ...

What is the best way to automatically run all node.js files within a specific folder upon startup?

Is there a way to automate the running of all node.js scripts within a specific folder on startup, perhaps using an npm script like npm run someScript for each subfolder? Is it possible to achieve this without creating a Java program? ...

Node is currently posing a challenge for the installation of packages

I am currently facing an issue while setting up my raspberry pi 3. I am attempting to install and execute a node code, but I encountered a problem during the installation of packages using npm. After trying multiple times with different versions of node ( ...

Encountering a problem with the node.js version while trying to install

Currently in the process of setting up my Raspberry Pi as a node.js server. Recently performed a clean installation of Raspberian Subsequently, I installed node Upon running node -v, the system displays: v0.10.25 Proceeded to install npm When checking ...

Establish a Vue application to run on Nginx at port 80 in Raspbian, paired with a Flask backend operating on port 8080

My setup involves Nginx running a Flask-based backend on port 8080 with the following configuration: server { listen 8080 default_server; listen [::]:8080; root /var/www/html; server_name _; location /static { alias /var/www ...

What are the steps for integrating selenium into Raspbian Python3?

My Setup: Raspberry Pi3 Operating System : Raspbian Programming Language : Python 3.5 Geckodriver version: geckodriver-v0.19.1-arm7hf (usr/local/bin/geckodriver) Browser: Firefox ESR (52.6.0 - 32-bit) Code Snippet: from selenium import webdriver brows ...