# Problem with atom using julia

**URL:** https://discourse.julialang.org/t/problem-with-atom-using-julia/22163
**Category:** General Usage
**Created:** [March 21, 2019, 8:12pm UTC](https://discourse.julialang.org/t/problem-with-atom-using-julia/22163 "2019-03-21T20:12:11Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![danielcas](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/danielcas/32/7515_2.png) [@danielcas](https://discourse.julialang.org/u/danielcas)
#### Post date: [March 21, 2019, 8:12pm UTC](https://discourse.julialang.org/t/problem-with-atom-using-julia/22163/1 "2019-03-21T20:12:11Z")

</div>

I’m using julia in atom, and I’m trying to open an excel file using ExcelReaders package. There is no problems when I run julia directly, but through atom gives me the following error message:

"ERROR: LoadError: PyError (ccall(@pysym(:PyObject\_Call), PyPtr, (PyPtr, PyPtr, PyPtr), o, pyargsptr, kw)) \<class ‘FileNotFoundError’\>  
FileNotFoundError(2, ‘No such file or directory’)  
File “C:\Users\Daniel Castro.julia\v0.6\Conda\deps\usr\lib\site-packages\xlrd\__init_\_.py”, line 111, in open\_workbook  
with open(filename, “rb”) as f: "

I think the problem is where atom is searching for that file. ¿Does anyone know where may I change the path or wher atom is looking for the file?

Kind regards

Daniel Castro

---

<div class="post-metadata">

### Author: ![pfitzseb](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/pfitzseb/32/45566_2.png) [@pfitzseb](https://discourse.julialang.org/u/pfitzseb)
#### Post date: [March 21, 2019, 8:15pm UTC](https://discourse.julialang.org/t/problem-with-atom-using-julia/22163/2 "2019-03-21T20:15:35Z")

</div>

Not sure if it’ll fix your problem, but try starting Atom from a terminal – that you way your `PATH` is the same as when you start a Julia session in the terminal.

---

<div class="post-metadata">

### Author: ![Diego\_Tejada](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/diego_tejada/32/7615_2.png) [@Diego\_Tejada](https://discourse.julialang.org/u/Diego_Tejada)
#### Post date: [March 26, 2019, 1:50pm UTC](https://discourse.julialang.org/t/problem-with-atom-using-julia/22163/3 "2019-03-26T13:50:17Z")

</div>

You need to change your current working directory:

cd(“…/mydir/someotherdir/”)

You can read more about it in:

> [@How to change working directory in julia with atom](https://discourse.julialang.org/t/how-to-change-working-directory-in-julia-with-atom/7588):
>
> The command to change working directory is cd(dir::AbstractString=homedir()). Can anyone give an example as how to use it?

then you can run you file using ExcelReaders package.

I hope it helps.
