6,021 questions
2 votes
1 answer
51 views
pyinstaller is just outputting a generic file, not an exe
I am trying to turn my Python script to an exe, but for some reason pyinstaller is just outputting a file of type file. It doesn't run if I add .exe to the end either. I am using WSL in VSCode and ...
0 votes
0 answers
64 views
wsl: Permission denied on using pyenv
Problem I recently installed pyenv on wsl(24.04) and tried to set python version on local directory, but I got this error: $ pyenv local 3.14.0 ~/.pyenv/libexec/pyenv-version-file-write: line 37: ....
0 votes
0 answers
42 views
WslRegisterDistribution failed with error: 0x80370114 [closed]
[Installing, this may take a few minutes... WslRegisterDistribution failed with error: 0x80370114 Error: 0x80370114 L'opÚration n'a pas pu Ûtre dÚmarrÚe car une fonctionnalitÚ requise n'est pas ...
0 votes
0 answers
48 views
WSL stops functioning after a failed docker pull [closed]
I need to install a project on GitHub, and they said it should be installed by docker, so I installed docker desktop for windows and set up WSL integration following the guide on docker website. After ...
-5 votes
0 answers
52 views
Is the VSCode WSL extension open source? [closed]
Extension: WSL I have a use case that requires modifying the WSL VSCode extension. The extension page takes you to a GH repo for vscode-remote-release, but the extension code isn't in there. I've look ...
1 vote
1 answer
74 views
Segmentation fault when inserting row [closed]
I’m using GridDB 5.7 with Node.js 16 on WSL2 Ubuntu 22.04. I can successfully connect to the GridDB node, but when I create a container and try to insert a row, I get a segmentation fault: My code ...
0 votes
1 answer
53 views
Cannot find module 'griddb-node' after installing GridDB Node.js client [closed]
I installed GridDB 5.7 and created a Node.js project: mkdir griddb-node-test cd griddb-node-test npm init -y npm install griddb-node My code (test.js): const griddb = require('griddb-node'); console....
0 votes
0 answers
76 views
My VS Code is just stuck on loading the remote WSL
I use WSL in Windows for developments but for a few days it is not working, it is just in the mood of loading and loading unloading. I checked my WSL via command terminal it's working there, but it's ...
0 votes
0 answers
48 views
Camoufox browser window remains visible in WSL even when `headless` is set to `virtual`
Camoufox browser window remains visible in WSL even when headless is set to virtual Description When headless is set to "virtual", the Camoufox browser window still appears on the screen in ...
0 votes
0 answers
58 views
GridDB Node.js StoreFactory.createStore / getStore is not a function [closed]
I installed GridDB 5.7 and am trying to use the Node.js client to create a store object. My code is: Input const griddb = require('griddb-node'); const factory = griddb.StoreFactory.createStore({ ...
-2 votes
1 answer
48 views
VSCode custom extension throws an error about keybindings
I wanted to update my VSCode extension. But when running npm run test I get an error: Error: Cannot find module './build/Debug/keymapping' I tried to compare it with fresh extension, generated with ...
0 votes
1 answer
55 views
Laravel Sail + Xdebug
I have Laravel Sail installed in WSL, and I'm trying to debug the application using Xdebug. This only works if I enter the WSL IP address directly into the browser (http://172.17.170.44:8000). If I ...
1 vote
0 answers
64 views
configuring vagrant vm with ansible through WSL - Failed to connect to the host via ssh
i am having hard time with configuring vargrant vm with ansible, my host machine is windows 11 so i use WSL. (something its working and something i get "Failed to connect to the host via ssh"...
0 votes
0 answers
21 views
dfx command not working when running Motoko project
Error output when running dfx commands I’m trying to run a simple Motoko project locally using the DFINITY SDK (dfx), but none of the dfx commands seem to work properly. I’ve tried running commands ...
5 votes
2 answers
90 views
Actix Web server fails to restart on the same port when on WSL
I'm developing a simple Actix Web backend in Rust and running it on WSL (Windows Subsystem for Linux). The server runs fine the first time, but when I use cargo watch -x run to auto-restart it on code ...