I had this problem installing Julia on 'Bash on Ubuntu' in Windows 10 after copy/pasting the whole set of lines in one go according to the Ubuntu instructions in http://julialang.org/downloads/platform.html. When I went to /etc/apt/sources.list.d/, I noticed that julia-deps was still missing, so I reran that add-apt-repository line, at which point I was prompted for confirmation. This I had not seen the first time, probably because of the two following two lines that were still coming in the paste job. After answering yes, julia-deps was successfully added, and after another update/upgrade cycle, starting Julia no longer produced this error. You guys may want to check whether this is your problem as well.
Cheers, Ludger. -- On Saturday, September 10, 2016 at 12:38:23 AM UTC-7, Yaakov Borstein wrote: > > as of sep 10 this remains the quickest solution > > On Wednesday, September 7, 2016 at 10:34:15 PM UTC+3, Loic Chappaz wrote: >> >> Hi there, >> >> I just had the same issue under Ubuntu 14 and a fresh Julia 0.4.6 install. >> It seems that Ubuntu updated my gmp library to version 6.1.0 during the >> last round of updates and that does not seem to agree with Julia (Even >> after reinstalling it from the PPA after uninstalling it) >> >> To solve it: I simply downgraded gmp back to 5.1.3 using: `sudo apt-get >> install libgmp10=2:5.1.3+dfsg-1ubuntu1` >> and finding the proper version name using: `apt-cache showpkg libgmp10` >> And that works fine. >> I also did: `sudo apt-mark hold libgmp10` to keep it from automatically >> updating next time around. >> >> There's likely a better fix than that though, as I'm no Linux guru. >> >> Cheers, >> Loic >> >> >> On Friday, September 2, 2016 at 8:52:48 AM UTC-7, Andre Bieler wrote: >>> >>> All works fine if I download the binary from >>> http://julialang.org/downloads/ >>> >>