file-not-found Questions

11

Solved

The question is why I see the error message in the title when trying to import enchant. I am using Win64.
Durden asked 1/4, 2015 at 2:34

12

Solved

I am trying to open the file recentlyUpdated.yaml from my Python script. But when I try using: open('recentlyUpdated.yaml') I get an error that says: IOError: [Errno 2] No such file or directory: ...
Abruzzi asked 30/8, 2012 at 17:1

5

Solved

I'm trying to configure the default webpage for an IIS 7.5 website. Request filtering is turned on. However .aspx pages are allowed, I've set default.aspx to be the default page for the website. ...
Laureenlaurel asked 19/11, 2012 at 14:34

2

I am fairly new to python. I am trying to make a script that will read sudoku solutions and determent if they are correct or not. Things I need: 1] Prompt the user to enter a file/file path whic...
Alyce asked 12/3, 2014 at 23:47

2

Solved

I am currently looking to speed up my code using the power of multiprocessing. However I am encountering some issues when it comes to calling the compiled code from python, as it seems that the com...
Professional asked 2/1, 2023 at 0:9

2

Solved

I use a third-party library that's fine but does not handle inexistant files the way I would like. When giving it a non-existant file, instead of raising the good old FileNotFoundError: [Errno 2]...
Otila asked 18/3, 2016 at 6:6

3

Solved

I was trying to iterate over the files in a directory like this: import os path = r'E:/somedir' for filename in os.listdir(path): f = open(filename, 'r') ... # process the file But Pyt...
Spry asked 1/3, 2015 at 21:31

2

Solved

I have 2 notebooks under the root folder in my workspace. Calling one notebook from the other with %run magic cmd returns error saying file path not found. This is my command: %run /Users/[email&#1...

14

Solved

I'm trying to load a .csv file using the pd.read_csv() function when I get an error despite the file path being correct and using raw strings. import pandas as pd df = pd.read_csv('‪C:\\Users\\use...
Wantage asked 10/2, 2017 at 17:48

6

I created a new Project from scratch in IntelliJ by using a Maven Module. I didn't select any specific archetypes and I clicked on finish. The project gets created nicely and I have the java and re...
Haddix asked 7/9, 2012 at 20:30

19

Program is part of the Xenomai test suite, cross-compiled from Linux PC into Linux+Xenomai ARM toolchain. # echo $LD_LIBRARY_PATH /lib # ls /lib ld-2.3.3.so libdl-2.3.3.so libpthread-0.10.so ld...
Indebtedness asked 26/1, 2009 at 18:7

2

My project has been using ts-node to run a mix of JavaScript and TypeScript. Recently it stopped working, without an obvious reason. At the most simple level, here is how it's run and the error it ...
Elson asked 25/6, 2019 at 20:57

2

Solved

MacOS Sierra ➜ fun_python $ pip --version pip 9.0.1 from /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages (python 3.5) pip install pygame is giving me the following ...
Dorotheadorothee asked 1/9, 2017 at 1:39

6

I have move my project from another machine with latest Xcode installed in it. But now when i'm running project it giving me error as Info.plist:0: error: reading data: The file “Info.plist” co...
Stetson asked 7/6, 2016 at 9:8

0

This is a very interesting problem, I was attempting to add an icon to my cx_freeze executable but whenever I do it crashes, Note: I'm running windows 10 and using python 3.8.2 My setup.py file is ...
Colene asked 2/7, 2020 at 2:13

1

I have the code below, when I run it, the next error appears "FileNotFoundError: [WinError 2] The system cannot find the file specified". I have added the the logfile snippet. The wierd thing is,...
Crispa asked 6/4, 2017 at 9:15

0

I have several people on my team that are running into an intermittent problem running some very basic Python commands. The following is all in Windows 10, using the Python Launcher (the py command...
Starlet asked 16/1, 2020 at 22:27

10

Am developing an existing iOS application and I have to write unit test cases for this project. It is building and running in Simulator 6.0. Whenever I try to test the project, it is showing the er...
Marella asked 11/4, 2013 at 13:54

2

I'm using PyInstaller to bundle my application into one .exe file. The problem is that it works fine with --onedir option, but can't find a module when built with --onefile. Both --onedir and --on...
Encrinite asked 16/12, 2013 at 2:53

6

Solved

I've been searching for hours but haven't found anything that seems to be able to solves this issue. Here's the scenario: I'm making a wp theme based on the "Twenty Eleven" theme. Everything went...
Temperament asked 13/9, 2012 at 16:39

9

Solved

I use export FLASK_APP=flask_app and then do flask run but I get the error: Error: The file/path provided (flask_app) does not appear to exist. Please verify the path is correct. If app is not o...
Cannula asked 28/1, 2017 at 18:34

5

Solved

My OS is Windows 7. My problem is that when I try to run rails server, an error occurs. I have installed the sqlite3 gem, even the sqlite-ruby gem, and still nothing. I already don't know what to...
Emulsoid asked 27/4, 2011 at 7:44

3

Solved

I'm trying to compile one of my projects on Windows 7, using Visual Studio 2013. I've installed Boost 1.53 and setup the solution using cmake. What happens is that now the compiled libraries of bo...
Bouzoun asked 16/11, 2013 at 22:58

1

This was an issue we've been dealing with for a while now - we're building a C++ project using the Cygwin toolchain, and no matter what we add in the C++ compiler include paths under project settin...
Layfield asked 10/8, 2017 at 17:9

10

So every time I update my app, Xcode claims not to be able to find a particular external framework even though it's there. It's happened again with Xcode 6 and my usual methods (I'm fairly inexperi...
Later asked 10/9, 2014 at 11:45

© 2022 - 2025 — McMap. All rights reserved.