Yeonsoo Kim

Results 16 comments of Yeonsoo Kim

I have an old PC with AM2+ socket and 780G motherboard chipset which supports legacy BIOS only. I can boot from my USB memory when I used Rufus and YUMI,...

Ubuntu 16.04 will be used to build the binary. https://github.com/openethereum/backport-3.1/pull/73

I remeber this issue didn't happen with Julia 0.6 and previous miniconda with Python 3.6.5. I cannot remeber the version of miniconda, though.

I found the reason! DLLs are not included because `Conda.BINDIR` is not in PATH. ``` julia> using Conda, PyCall julia> ENV["PATH"] = "$(Conda.BINDIR);$(ENV["PATH"])"; julia> py""" import numpy print(numpy.random.rand(1, 1)) """...

Thank you for finding out that the problem is solved with Cygwin's git. I had appended the following code to `~/.bashrc` as a workaround. ```bash if [ -z "$(ps -ef...

I think we need escaped name to get downloaded .cpio files but not for extracted .rpm files. Is there any part that manually escape the path of .rpm file?

> If for any other file/operating system that escape is necessary I can see an issue with the extraction of that rpm file, as the file that will come out...

I got this error: ```julia (v1.0) pkg> build WinRPM Building LibCURL → `C:\Users\alkorang\.julia\packages\LibCURL\OoXMv\deps\build.log` Building WinRPM ─→ `C:\Users\alkorang\.julia\dev\WinRPM\deps\build.log` Resolving package versions... ┌ Error: Error building `WinRPM`: │ ERROR: LoadError: UndefVarError: start...

Iteration interfaces have been changed in Julia v1.0. Julia v0.6: https://docs.julialang.org/en/v0.6/manual/interfaces/#man-interface-iteration-1 Julia v1.0: https://docs.julialang.org/en/v1.0/manual/interfaces/#man-interface-iteration-1 Fixing this may require later version of Compat.jl package.

You don't have to apology, I also switched to v1.0 recently. :) https://github.com/JuliaLang/Compat.jl/issues/603 I found that Compat.jl does not support `iterate(iter, state)` yet. So, I'm not sure, If there is...