Questions tagged [executable-path]
36 questions
1
vote
1 answer
VSCode cannot find php executable
I orginally did not have php installed when I got vs code. Therefore I installed the PHP IntelliSense extension and installed PHP. VS Code could still not locate PHP so I realized I had to change the php.validate.executablePath in VS Code. Which…

Fletchy
- 311
- 1
- 4
- 18
1
vote
0 answers
Visual Studio Code can't validate PHP, I added it to the path, but it's still alerting me
That's the alert it's showing.
As you can see, I already set the path (I also tried another .exe, from WAMP), but it is still alerting that PHP executable wasn't found.
I have no idea why, but it started to happen after I installed this…

Lucas
- 115
- 1
- 1
- 5
1
vote
1 answer
Need to associate files with executable in batch file
I need to write a batch script to associate .py files with pythonw.exe. So I need to do two things: 1) find the path of the pythonw.exe, and then associate .py files, or specifically afile.py with pythonw.exe.
I know that I can find the path to…

Vincent Mayeski
- 123
- 7
1
vote
1 answer
Application.Executablepath in C# has mixed separator characters
I'm using someone else's code (licensed) on two different machines. On one machine, the Application.ExecutablePath returns the result the programmer must have expected, on the other it does not. Both are Windows 7 machines.
On my machine, the…

user1860707
- 51
- 6
0
votes
1 answer
Problem occurred while web crawling instagram
def insta_searching(word):
url = "https://www.instagram.com/explore/tags/" + str(word)
return url
def select_first(driver):
first = driver.find_element_by_css_selector("div._9AhH0")[0] # Updated selector for the first post
…
0
votes
1 answer
Netlify cloud deploy - failure to get chromium.executablePath for browser launch
I made a serverless functions at Netlify. It's a simple browser automation function with Puppeteer:
const chromium = require("@sparticuz/chromium");
const puppeteer = require('puppeteer-core');
chromium.setHeadlessMode = true;…

Igor Savinkin
- 5,669
- 8
- 37
- 69
0
votes
1 answer
How to find which chrome executable is getting used by Puppeteer?
// executablePath is specified
const browser = await puppeteer.launch({
executablePath: '/path/to/chrome'
});
// // executablePath is not specified
const browser = await puppeteer.launch();
// This will not work.
// console.log('executablePath…

Alok
- 7,734
- 8
- 55
- 100
0
votes
0 answers
Why do I receive "File corrupted!" error after changing library ID from @rpath to @executable_path?
I use Qt 5.12 with XCode 10 for building my desktop application. I've received a .dylib from a 3rd party in order to integrate it into my application. I've modified my .pro file to add the library in the LIBS variable.
If I leave the library id as…

Meliodas
- 327
- 2
- 10
0
votes
2 answers
My selenium script (in Python) for chrome runs but does nothing
vscode says it run but it does nothing. My pip is up to date and i installed selenium with the command prompt. i have a valid path (i think) for chromedriver. Here's my code:
from selenium import webdriver
chromedriver =…

Pierre
- 1
- 3
0
votes
1 answer
Can my program edit/update the users .profile/.bashrc/.cshrc files to set program executable as environment variable
I have an application and it is docker containerized, which contains the program executable and other stuff.
Now how can I make the executable name as a linux environment variable(permanently and not the terminal temporary)?
One option that I have…

kat_16
- 39
- 6
0
votes
1 answer
How to find executable path of a windows service
I am trying to find the executable path of a running service , and i have looked upon ServiceBase and there is no property indicating the path. Nor does ServiceController offer any kind of help.
ServiceBase…

Bercovici Adrian
- 8,794
- 17
- 73
- 152
0
votes
1 answer
latex-preview-pane-update couldn't find "pdflatex" directory when emacs loading hello.tex
I run my hello.tex file. But it always has the warning:
Error running timer ‘latex-preview-pane-update’: (file-error
"Searching for program" "No such file or directory" "pdflatex")
I've checked .emacs file. I've been adding script in…

DylanYang
- 11
- 3
0
votes
0 answers
.py which uses input files to .exe
I have a python script in which I am using the input files which are either pickle files or excel files. the output files are then saved in the drives. I need to convert the py into exe files. Being a new bee i am not able to understand how to…

Dilip Kriplani
- 33
- 4
0
votes
1 answer
vb.net runs gpg.exe step of job runs ok from PC but not from SQL Server Agent schedule
Everything worked great from my Visual Studio on my PC running this from the Start button. When I build the executable and copied the executable to the production box and scheduled the job via SQL Server Agent on the production machine – everything…

bop-a-nator
- 111
- 1
- 11
0
votes
1 answer
set executable PATH in Jupyter Notebook on google cloud cluster Python3
I opened jupyter notebook on my google cloud cluster with these steps: https://cloud.google.com/dataproc/docs/tutorials/jupyter-notebook
Now I get an error on this piece of code:
import selenium
from contextlib import closing
from…

Selman
- 1
- 1