Tag: apt

从CRAN Ubuntu存储库安装R:没有公钥错误

让我开始说我对Linux(Ubuntu)是完全新的,并与R一起工作。目前,我在R 2.13版本,并且想要更新到一个更新的版本,以便使用一些依赖于R> = 2.14的软件包。 我有我的sources.list文件中find这里描述的行。 然后我导航到terminal并input: sudo apt-get update 并尝试更新最接近我的CRAN镜像上的R时出现以下错误: Reading package lists… Done W: GPG error: http://lib.stat.cmu.edu oneiric/ Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 51716619E084DAB9 由于我在Ubuntu下是R新手,所以我不确定如何debugging这个错误。 任何帮助都感激不尽。

你如何在代理后面的dockerfile中运行apt-get?

我运行一个虚拟机(Ubuntu 13.10)与docker(版本0.8.1,生成a1598d1)。 我正在试图build立一个docker文件的形象。 首先,我想更新软件包(使用下面的代码 – 代理被混淆),但apt-get超时错误: Could not resolve 'archive.ubuntu.com' 。 FROM ubuntu:13.10 ENV HTTP_PROXY <HTTP_PROXY> ENV HTTPS_PROXY <HTTPS_PROXY> RUN export http_proxy=$HTTP_PROXY RUN export https_proxy=$HTTPS_PROXY RUN apt-get update && apt-get upgrade 我也在主机系统中运行以下内容: sudo HTTP_PROXY=http://<PROXY_DETAILS>/ docker -d & 主机能够正常运行apt-get 。 如何更改dockerfile以允许它从容器内到达ubuntu服务器? 更新 我在CentOS中运行代码(将FROM ubuntu:13.10更改为FROM centos ),它工作正常。 这似乎是Ubuntu的一个问题。

如何信任一个apt库:Debian apt-get update error public key is not available:NO_PUBKEY <id>

尝试更新Debian Etch安装中的一些存储库,并从运行“apt-get update” W: GPG error: http://www.debian-multimedia.org etch Release: The following signatures couldn't be verified because teh public key is not available: NO_PUBKEY 07DC563D1F41B907 W: You may want to run apt-get update to correct these problems 它的讽刺指示我运行apt-get更新是一个很好的踢球者…

软件包php5没有安装候选(Ubuntu 16.04)

当我尝试通过使用以下代码在Ubuntu 16.04中安装php5: sudo apt-get install php5 php5-mcrypt 我得到以下错误: Reading package lists… Done Building dependency tree Reading state information… Done Package php5 is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'php5' has no installation […]

使用pip安装SciPy和NumPy

我试图在我分发的包中创build所需的库。 它需要SciPy和NumPy库。 在开发的同时,我安装了两个使用 apt-get install scipy 它安装了SciPy 0.9.0和NumPy 1.5.1,并且工作正常。 我想用pip install来做同样的事情 – 为了能够在我自己的包的setup.py中指定依赖关系。 问题是,当我尝试: pip install 'numpy==1.5.1' 它工作正常。 但是之后 pip install 'scipy==0.9.0' 悲惨地失败了 raise self.notfounderror(self.notfounderror.__doc__) numpy.distutils.system_info.BlasNotFoundError: Blas (http://www.netlib.org/blas/) libraries not found. Directories to search for the libraries can be specified in the numpy/distutils/site.cfg file (section [blas]) or by setting the BLAS environment variable. 我如何得到它的工作?

自制软件,macports或其他软件包安装工具的区别/用法是什么?

我刚刚从Ubuntu切换到Mac。 我很失望, sudo apt-get在Ubuntu没有方便的sudo apt-get 。 我听说我应该使用自制软件,但是我不确定自制软件或者macports是做什么的?

在没有密码提示的情况下在Ubuntu上安装mysql

如何编写脚本在Ubuntu上安装MySQL服务器? sudo apt-get install mysql会安装,但是也要求在控制台input密码。 如何以非交互的方式做到这一点? 也就是说,写一个脚本,可以提供密码? #!/bin/bash sudo apt-get install mysql # To install mysql server # How to write script for assigning password to mysql root user # End

node.js和node之间有什么区别?

我在我的机器(linux mint 15)中安装了node.js,当我运行node example.js ,它说: The program 'node' can be found in the following packages: * node * nodejs-legacy Try: sudo apt-get install <selected package> 那么node和nodejs有什么区别呢? 我以前都安装了node.js和node,但是当我运行node example.js ,web服务器根本不能启动。 所以我删除了节点并保留了node.js.