-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FileNotFoundError: [WinError 2] The system cannot find the file specified #13
Comments
same here It seems to call "python model.py .. " printing cmd
and then fails possibly due to a missing model.pu |
Yeah, probably. I added the |
Yes, I admit I did not test on Windows. I thought having Will try to look into. |
same questions,in window system, |
Same here. Not a permissions issue, definitely seems like an issue with the path of the created model.py file (maybe?). |
It's actually the python executable. Subprocess doesn't appear to check the PATH, per https://stackoverflow.com/a/32799942/2540707 |
I'm OK with using |
@minimaxir bug is closed? |
I also have same issuedoes anyone try google colab with TPU ? automl_grid_search('train.csv','Survived',framework='tensorflow')
|
This should be fixed in 0.2.1. Upgrade and let me know if it works! |
Also I have no idea how you would get a |
@minimaxir I upgraded |
I installed this morning and the same results.csv error exists (Windows 10). |
Tip: this may be happening because the training subprocess is crashing; if so, Jupyter/ipython/colab won't show exceptions from that because it's being run in a separate process. If you run automl_gs on the command line, you should see the exception from the model.py subprocess (in addition to this exception), which might give you more insight into what's breaking. |
The Jupyter Notebook also adds this, as far as errors go :- FileNotFoundError: [Errno 2] No such file or directory: 'encoders\pclass_encoder.json' It does appear to be running from the [minconda] command line however, at least a basic trial. |
Any updates on this issue? Also running into problems with it. |
FileNotFoundError Traceback (most recent call last) ~\pandas.py in FileNotFoundError: [WinError 2] The system cannot find the file specified: 'F:/titanic' |
You may want to check if your system is blocking access to the folder you are trying to make venv. for windows 10, Windows Security is by default protecting user's document folder from being accessed and will block those access, you may want to open Windows Security -> Virus & threat protection -> Protection history to allow access to the folder you are making venv at. |
I was also getting the same error when I was running code in spyder. Then I checked and found that, ffmpeg is needed. When I installed it from code "conda install -c conda-forge ffmpeg" (for anaconda), my issue gets resolved. |
When I try to run the jupyter notebook that you provided on the link
https://github.com/minimaxir/automl-gs/blob/master/docs/automl_gs_tutorial.ipynb
I'm getting FileNotFoundError. Also, when I tried with a local csv file, I got the same error again.
Btw, my OS is Windows 10.
The text was updated successfully, but these errors were encountered: