I am a beginner, and its been hard to know where to search info about the problem, but I have been all day searching solutions yet I haven’t found anything that would help words I am trying to import: my file In which I am trying to import: the error popping: I am trying to import my file words to
Tag: windows
Python .exe PermissionError: [Errno 13] Permission denied
Here’s the code for my reprex: From this, I used auto-py-to-exe to build a one-directory .exe. Then I opened cmd as an administrator, navigated to the .exe’s folder and attempted to run the executable. Here’s the output: I am all out of ideas at this point, and I’d appreciate any thoughts. Answer I solved the issue. My antivirus was blocking
Problem with selenium python (chromedriver) [closed]
Closed. This question needs debugging details. It is not currently accepting answers. Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question. Closed 6 months ago. Improve this question I have been using selenium in python now for over 2 years but
Python : FileNotFoundError [WinError 2] The system cannot find the file specified , subprocess.py:1582
Details error message:- We have something similar issue listed here: https://bugs.python.org/issue17023 The file is there, the path is fine too. But why am I getting this error as the file is there at the specified location? I`m getting this error while running formatter linters. Answer
In Jupyter notebooks, how to connect to MS SQL with a different Windows user
I have Select access to a MS SQL database that I would like to extract data into a Pandas dataframe running inside a Jupyter notebook. For reasons out of my control, I have access to the database from a different user. How can I query the database from Jupyter while connected to my current user account? Answer This is how
I have made a bit of code that gets your resolution in Windows, how do I make it print it in an f string?
I have made a bit of Python code that gets your resolution in Windows, how do I make it print it in an f string? Its output is 1920×1080, but I need it to be like because it’s going to be among other code as I am trying to remake neofetch. Unless there is a better way of getting your
Error in the installation of tesseract ( pycharm python)
I have installed open-cv, jupyter … But i have problems with tesseract. I have installed tesseract application but i can’t install this on pycharm. Someone can help me? Answer First you need to install the executable file. The link of downloading executable file on windows: https://github.com/UB-Mannheim/tesseract/wiki If you have already installed the executable file of tesseract then you can install
Unable to determine R library path
I am new to R. I am running Jupyter Lab on a Windows 11 machine, and have created a virtual environment where I installed some packages and irkernel. I get the following message when I execute %load_ext rpy2.ipython: Here is my complete code: Apart from the environment variables, the above code comes from David Mertz book “Cleaning Data for Effective
Safety and Clobber errors during clone of anaconda base environment (Version 2022.05)
I installed the anaconda distribution (version 2022.05) on a windows 10 (64 bit) machine. During installation I followed the recommendations given here (installed it only for myself and didn’t add anaconda to the PATH variable). I didn’t change any setting, so you can assume a virgin anaconda with default settings. I need to install some additional packages which aren’t part
ttk:Combobox foreground color change doesn’t work properly. What’s wrong?
Attemps to reliably change the text color in a ttk::Combobox fail. It happens for me on Windows 10 with the native theme. The following code creates two comboboxes with their foreground color set to red. Selecting an option in one of them then the other, back and forth, shows that the foreground color alternates between black and red. Here’s what