Questions tagged [permissionerror]

46 questions
4
votes
8 answers

A fatal esptool.py error occurred: Cannot configure port. PermissionError(13, 'A device attached to the system is not functioning.', None, 31)

I am using a windows OS and I tried running a .ino code in arduino IDE for ESP8266 and came across the following error while trying to upload the code to ESP8266. A fatal esptool.py error occurred: Cannot configure port, something went wrong.…
Krshnapriy
  • 41
  • 1
  • 1
  • 3
4
votes
1 answer

Can't Install/Uninstall Python Packages due to ValueError and PermissionError: [WinError 32]

I'm new to both Python and ArcGIS Pro; I'm just getting started and I'm trying to install a couple of Python packages in order to read, modify, and write Feature Class files using a Spatially Enabled DataFrame (SEDF). To do that, I need to install…
A.Student
  • 41
  • 2
3
votes
1 answer

#Python importing data --Alex the analyst project

I am working on Python /data analysis portfolio watching Alex the Analyst youtube video. (https://www.youtube.com/watch?v=ocdwh0KYeUs&list=PLUaB-1hjhk8H48Pj32z4GZgGWyylqv85f&index=5) However the code he provided does not work whats so ever. I tried…
1
vote
0 answers

How can I resolve a 'PermissionError' when using sequential pattern mining with SPMF on Windows?

When I try the code in the link below, I get the following error on line 39. The name of the temp file changes every time. How can I resolve this…
1
vote
0 answers

PermissionError with smtplib python

I have been experimenting with smptlib and am trying to sen a email to somebody. Here is my code: import smtplib my_email = "sender_email@gmail.com" my_password = "password1234" connection =…
bchyou
  • 11
  • 2
1
vote
0 answers

Error installing virtualenvwrapper on MacOS - installation directory and permission issues

I'm following the installation guides for AutoGPT and it suggests installing Virtualenvwrapper but I seem to always run into walls when working on the terminal of this Mac. Either it's a permission or it does not accept the default cd commands and I…
Enzo
  • 11
  • 2
1
vote
0 answers

Rename files: PermissionError: [WinError 32] The process cannot access the file because it is being used by another process

I was trying to automize file renaming process using the following code in python: import re import datetime path = "C:\\Users\\Public\\filexyz" for filename in os.listdir(path): if filename.endswith('.txt'): with…
Phil C
  • 11
  • 2
1
vote
1 answer

Not able to give Microphone access to the website loaded via web view in flutter. Its working in ios

Hi I'm working on an app in flutter. In the app I am loading an external website with a frequency tuner app. I'm not able to give microphone permission in android devices but its working fine in ios devices. Package used package used for web…
midhun p
  • 11
  • 1
1
vote
1 answer

PermissionError Multiprocessing argument pyppeteer.Page

PermissionError Multiprocessing argument pyppeteer.Page successful but inefficient import asyncio from pyppeteer import launch from multiprocessing import Process async def f(x): print("async def f(x,page):",x) …
1
vote
0 answers

PermissionError: [WinError 5] Access is denied when trying to install python-terrier

I'm attempting to install python-terrier on Windows 10 and keep running into the same PermissionError: [WinError 5] Access is denied output (see below for full error response) no matter what I try. Things I have tried already: Running command…
1
vote
1 answer

PermissionError when trying to rename a file on OneDrive

When I run my code that encrypts a file, I get the following error: <_io.TextIOWrapper name='C:/Users/depen/OneDrive/Documents/PNG_transparency_demonstration_1 >(2).png' mode='r' encoding='cp1252'> read encrypting encrypted encrypted file…
1
vote
0 answers

Permission error in load_dataset() from datasets library

I'm trying to get Wikisql dataset using the following code snippet. from datasets import load_dataset import random, warnings warnings.filterwarnings("ignore") valid_dataset = load_dataset('wikisql', split='validation') valid_dataset[0] But it…
Gihan Gamage
  • 2,944
  • 19
  • 27
0
votes
2 answers

WebDriverException: Message: 'SeleniumDrivers' executable may have wrong permissions

So I have endeavoured to learn selenium and I am struggling already at Step1: installation. In particular, connecting browser. Here is the code: from selenium import webdriver import os os.chmod('C:/SeleniumDrivers', mode =…
0
votes
0 answers

VS Code Python- PermissionError: [WinError 32] The process cannot access the file because it is being used by another process

I am new to VS Code, so I appreciate your help and guidance. Here's the issue that I have encountered for days: import numpy as np # linear algebra import pandas as pd …
0
votes
0 answers

Reading a CSV-File in a Network Folder and convert it to a .xml File. PermissionError: [Errno 13] Permission denied

This is currently my Python Script to convert CSV-Files to XML-Files def on_created(self, event): if event.is_directory or not event.src_path.endswith(".csv"): return csv_file_path = event.src_path print(f"CSV-Dateipfad:…
Marehno
  • 1
  • 1
1
2 3 4