我试图从Ubuntu12.04上的julianightlies安装julianightlies的Julia0.3.0。我可以安装0.2.1很好。我加了
deb http://ppa.launchpad.net/staticfloat/julianightlies/ubuntu precise main
deb-src http://ppa.launchpad.net/staticfloat/julianightlies/ubuntu precise main 手动到my /etc/apt/sources.list .列表。当我跑的时候
sudo apt-get update
sudo apt-get install julia我得到以下错误:
The following packages have unmet dependencies:
julia : Depends: librmath-julia-dev but it is not installable
E: Unable to correct problems, you have held broken packages.编辑:在enabling all repos之后,仍然会出现相同的错误。
下面是通过命令行添加repo时得到的结果:
USER:~$ sudo add-apt-repository ppa:staticfloat/julianightlies
Traceback (most recent call last):
File "/usr/bin/add-apt-repository", line 128, in <module>
ppa_info = get_ppa_info_from_lp(user, ppa_name)
File "/usr/lib/python2.7/dist-packages/softwareproperties/ppa.py", line 84, in get_ppa_info_from_lp
curl.perform()
pycurl.error: (35, 'gnutls_handshake() failed: A TLS packet with unexpected length was received.')当我下载.deb文件并在包管理器中打开它时,我会收到警告:
depdendency is not satisfiable librmath-julia-dev发布于 2014-06-19 22:01:03
这个问题的结果是,我还需要向我的sources.list中添加ppa:staticfloat/julia,就像here描述的那样。
我的其他问题来自于我的网络强加的一些互联网配置,导致添加ppa的via命令行的尝试失败。手工添加它们很好。
https://stackoverflow.com/questions/24270585
复制相似问题