Hi Lutfullah,
I was able to use Juno to open a DOS command window with a Julia command
prompt. However, after entering the Pkg.update() command I get the
following error message.
INFO: Updating METADATA...
ERROR: chdir METADATA: no such file or directory (ENOENT)
in cd at file.jl:11 (repeats 2 times)
Here is the contents of line 11 in the
file C:\Juno\resources\app\julia\share\julia\base\file.jl
uv_error("chdir $dir", ccall(:uv_chdir, Cint, (Ptr{Uint8},), dir))
Mike
On Saturday, February 13, 2016 at 8:53:36 PM UTC-6, Lutfullah Tomak wrote:
>
> Hi, welcome Julia.
> You don't need to install julia separately. Juno has one in it with all
> the required packages. Somehow, your installation of Juno is missing
> Requires package.
> First, in Juno press Ctrl+Space, enter `Julia: open a new terminal repl`
> and click to what shows up to open julia in console mode.
> Second, in julia repl, try `Pkg.update()` .
> Third, when it finishes with success close everything and reopen Juno.
> Fourth, if it still fails, then open up the julia repl again and do
> `Pkg.add("Requires")` .
> Last, when it finishes,close everything and reopen Juno, see if it starts
> correctly.
> If it still shows error please ask again.
> Note:Omit quotation(`) while writing.