Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
61 views

I'm working in an environment where the system's sudoers configuration mandates that commands like dnf, apt, and systemctl be executed with their full paths (e.g., /usr/bin/dnf, /usr/bin/systemctl). ...
OliP's user avatar
  • 81
0 votes
1 answer
74 views

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....
jeonghyeon's user avatar
-1 votes
1 answer
197 views

I'm trying to login via Python and Selenium, but I can't figure out the issue with the following line: driver = webdriver.Chrome(executable_path= r'C:\Program Files (x86)', options=options) I keep ...
Fraz Naqvi's user avatar
2 votes
3 answers
4k views

Just upgraded to selenium 4.10 and got: TypeError: init() got an unexpected keyword argument 'executable_path' I read that executable path not needed in latest version and the fix is: from selenium....
SeanSparx's user avatar
0 votes
1 answer
483 views

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'...
Igor Savinkin's user avatar
3 votes
2 answers
6k views

// executablePath is specified const browser = await puppeteer.launch({ executablePath: '/path/to/chrome' }); // // executablePath is not specified const browser = await puppeteer.launch(); // This ...
Alok's user avatar
  • 11k
1 vote
1 answer
815 views

I am running Adobe Brackets on a 2017 iMac (Retina - 27 inch) with macOS Monterey 12.2 I want to point the path to PHP inside of MAMP. What is the correct json format and code to do this in Bracket's ...
drcreative's user avatar
1 vote
0 answers
1k views

I've just upgraded from Julia-1.5 to Julia 1.6 and also installed the latest version of VScode on my Mac. Till now I made only one setting: "julia.executablePath": "/home/Applications/...
JdG's user avatar
  • 19
0 votes
0 answers
336 views

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 ...
Meliodas's user avatar
  • 347
2 votes
0 answers
802 views

I'm on MacOS Big Sur trying to run rfcat. I am running anaconda as well and I have set up an environment with Python2.7 when I originally got errors with Python3.x. I have downloaded the pyusb, ...
Wesley Owens's user avatar
0 votes
3 answers
2k views

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 ...
Pierre's user avatar
  • 1
0 votes
1 answer
45 views

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 ...
kat_16's user avatar
  • 29
1 vote
0 answers
155 views

I'm working on a website automation program for 1 month, all went well and worked perfectly fine until I had to reset my laptop to factory settings due to a black screen that kept on going after ...
Razorbackfire 's user avatar
-3 votes
1 answer
97 views

how to set executable path of chrome driver as path of the os (i want to make executable path as generic for all the system of driver-Selenium with python)
Romil Jain's user avatar
0 votes
1 answer
2k views

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. ...
Bercovici Adrian's user avatar
0 votes
1 answer
371 views

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 ....
DylanYang's user avatar
0 votes
0 answers
42 views

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 ...
Dilip Kriplani's user avatar
0 votes
1 answer
274 views

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 ...
bop-a-nator's user avatar
1 vote
1 answer
513 views

I am developing an Universal Windows App on C# in Visual Studio 2017. I am working with xml files for saving data. The problem is that when I try to run the builded app, using the executable file, it ...
Kaloyan Terziev's user avatar
1 vote
1 answer
3k views

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 ...
Fletchy's user avatar
  • 361
131 votes
13 answers
88k views

I was trying to check the AWS-CLI version on my MAC OS X. And the below error hit back: dyld: Library not loaded: @executable_path/../.Python Referenced from: /usr/local/aws/bin/python Reason: ...
Manogna Mujje's user avatar
0 votes
1 answer
489 views

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 ...
Selman's user avatar
  • 1
1 vote
0 answers
62 views

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 ...
Lucas's user avatar
  • 125
0 votes
1 answer
346 views

I am working on a Qt project which maps vowels onto a chart that have the *.sym format. My goal is to load an initial IPA chart like this. I have the *.sym files and I can load them after my ...
erip's user avatar
  • 17.1k
1 vote
1 answer
1k views

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 ...
Vincent Mayeski's user avatar
3 votes
1 answer
8k views

I have a NSIS installer for a program and change PATH settings to make the program always accessible from the command-line. Manipulating the PATH has however some adverse effect, such as other ...
eudoxos's user avatar
  • 19.2k
1 vote
1 answer
743 views

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 ...
user1860707's user avatar
0 votes
2 answers
1k views

Salutations, I have the following VBScript: Option Explicit Dim objWMIService, objProcess, colProcess Dim strComputer, strList strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{...
Ian's user avatar
  • 4,487
3 votes
0 answers
1k views

I have a piece of C# code that goes through all the running processes, finds a specific one, and gets its ExecutablePath. Problem is that, although it manages to find the wanted process, attempting to ...
Mohamed Moustafa's user avatar
17 votes
1 answer
47k views

I have created one windows application using VB. Whenever I executing the exe, I want to get the current directory of the exe file programatically. For example, Now, I am executing the exe file in d:...
Saravanan's user avatar
  • 11.7k
0 votes
1 answer
453 views

I have a setting for external editor that end-user can change in settings. As I want to make my software smart, I want to set button that starts this external software to disabled state, if software ...
osku's user avatar
  • 315
9 votes
3 answers
11k views

I could do this return Assembly.GetEntryAssembly().GetName().Name; or return Path.GetFileNameWithoutExtension(Application.ExecutablePath); Would both give the desired application name always? If so ...
nawfal's user avatar
  • 73.8k
4 votes
4 answers
2k views

I want to replace some utilities(like telnet) with transparent wrappers(with loggers). At first I used aliases, that worked nicely at the command line but gnome doesn't understand shell aliases so ...
Roman A. Taycher's user avatar
2 votes
1 answer
2k views

I have an application deployed via ClickOnce, along with a separate .NET console application that needs access to the ClickOnce application's installation directory. By the application's installation ...
Osbourne Ruddock's user avatar
8 votes
2 answers
4k views

Operating system is MacOS X, specifically 10.5 (Leopard) on a PowerPC G4, but I have the same problem on an x86 running 10.6. I am writing an application which dynamically loads a DLL. The DLL (let's ...
Thomas Pornin's user avatar
0 votes
1 answer
588 views

I have created a custom control using VB.NET in Visual Studio 2008 that gives extensive mapping and tracking functionality to a search and rescue app. The problem I am having is that in a number of ...
Gerry's user avatar
  • 23
2 votes
2 answers
4k views

I'm using a System.Management.ManagementEventWatcher to get the process ID and executable path for a started process: private void startWatcher_EventArrived(Object sender, EventArrivedEventArgs e) { ...
Mike Pateras's user avatar
  • 15.1k
292 votes
24 answers
588k views

Is there a platform-agnostic and filesystem-agnostic method to obtain the full path of the directory from where a program is running using C/C++? Not to be confused with the current working directory. ...
Ashwin Nanjappa's user avatar