问题标签 [ubuntu-17.04]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - How to install Maven 3 on Ubuntu 18.04/17.04/16.10/16.04 LTS/15.10/15.04/14.10/14.04 LTS/13.10/13.04 by using apt-get?
Try:
If it works for you ignore the rest of this post.
Intro
I started setting up my Ubuntu 12.10 on April 2013 and the normal sudo apt-get install maven
was not working for maven 3 back then.
The manual installation in this post is useful if you like to dig in deeper to your ubuntu kernel in regards with apt-get and where it finds the list of applications that are available for installation on Ubuntu . It can also be potentially useful for more recent releases of Ubuntu like Ubuntu 15.04, etc. if you face the same problem as I did back then with Ubuntu 12.10.
Automatic Installation via apt-get:
Checkout the manual installation if your current ubuntu can not install maven via common 'apt-get install maven'.
Make sure to remove maven 2 if your ubuntu is not fresh or if you were using maven 2 before:
Manual Installation via apt-get by adding maven 3 repository (Ubuntu 14.04 check out update 1):
This can be useful if your ubuntu apt-get repositories list is not up to date.
Maven 3 was required to set up the system and as it turns out most of the documents out there are referring to how to install Maven to Ubuntu version 12.04 or before. Best document I found was:
The whole process I came up with is as follows:
sudo -H gedit /etc/apt/sources.list
Add the following line the
sources.list
file:deb http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main
deb-src http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main
sudo apt-get update && sudo apt-get install maven3
sudo ln -s /usr/share/maven3/bin/mvn /usr/bin/mvn
Caution 1: command "sudo apt-add-repository ppa:natecarlson/maven3" did not work on my Ubuntu and had to run
sudo apt-add-repository -rm ppa:natecarlson/maven3
to get my apt-get to work again.Caution 2: thanks to David, you need to remove your existing symbolic link to previous versions of maven before running step 4.
OS X Installation
I decided to add OS X installation in case you use multiple environments for your dev: See the source stackoverflow thread for more details.
Install Homebrew that is the equavalent of apt-get
, then install Maven using:
Update 1: Installation for Ubunutu 14.04
Haven't tried this myself but I am confident this should work without security warnings:
Note: source here, many thanks and +1s to @rendybjunior, @Dominic_Bartl, and @FunThomas424242
smalltalk - 如何修复 Smalltalk 多核程序中的 Xtreams.Incomplete 异常?
我重写了基准游戏mandelbot Smalltalk 程序,使用四核,有时有效,有时失败。
在这里,我将代码简化为几种方法,足以在我的计算机上重现问题。(粘贴到纯文本文件中,另存为“example.st”并按照构建和运行说明进行操作)。
构建和运行说明:
堆栈跟踪:
toolbox - 在 Ubuntu 17.04 上安装 Vapor Toolbox
$ curl -sL 工具箱.vapor.sh | bash
此脚本已弃用。请通过 Homebrew 或 APT 安装
$ eval "$(curl -sL https://apt.vapor.sh )"
仅支持 Ubuntu 14.04、16.04 和 16.10。
您正在运行 17.04
我正在使用 Ubuntu 17.04
或者我必须等待 Vapor 支持。
python - 在 Ubuntu 17.04 中使用 Python 2.7 安装 OpenCV 3.2.0
如何在 Ubuntu 17.04 中使用 Python 2.7 安装 OpenCV 3.2.0?有没有合适的shell脚本呢?
我试过这个shell脚本。但我有这些错误。
ubuntu - 如何在 ubuntu 17.04 中将我的 gcc 6.3.0 更新为 gcc 7.1.0
ubuntu 17.04 的 gcc 7.1 是否有任何 ppa 可用?
https://launchpad.net/~jonathonf/+archive/ubuntu/gcc-7.1 这个ppa适用于16.04,我发现
django - 如何使用 gunicorn 运行 Django 遗留项目?
如何运行 django 项目 1.5 的遗产gunicorn
?
这就是我在开发模式下运行它的方式:
它工作正常。但是有人告诉我,我不应该在生产服务器中那样运行它。我应该使用gunicorn
.
我是 Django 项目的新手,我正在从以前的开发人员那里获取这个项目。他们没有给我任何将其迁移到新服务器的适当说明。
任何想法我可以如何正确运行它gunicorn
?
编辑:
java - 如何通过以war作为类路径的liquibase命令行使用包含标签进行更新
我想做什么
我正在尝试使用 Liquibase 的命令行工具和文件在 MySQL 数据库上运行更新,除非我绝对必须不破坏使用 maven 和 Jhipster 运行的项目,否则.war
不要触摸该文件很重要。master.xml
我的代码是什么样的
按照官方文档中有关如何设置路径的示例:
我使我的 liquibase.properties 如下:
我的master.xml
样子是这样的:
我的命令行命令如下所示:
有什么错误
当我运行它时,我收到以下错误:
当然,什么也没有发生。Liquibase 运行它的启动很好,所以DATABASECHANGELOGLOCK
数据库中有表。
我试过的
我尝试将我的changeLogFile
属性编辑为以下内容:
但是,这些返回相同的错误消息。如果我尝试在我的系统上使用我的更改文件的确切路径,我当然会得到这个:
我还尝试编辑master.xml
使包含标签看起来像这样:
这确实适用于命令行工具,但由于这也是通过 maven 和 Jhipster 运行的,所以我宁愿不操作这个文件,除非我必须这样做。
所有提到的技术都是他们的最新稳定版本,我在 Ubuntu 16.10 和 17.04 上遇到过这个问题。
我已经开始工作的解决方法
如果我直接放置一个更改文件路径,而不是master.xml
它与上面列出的任何版本的路径完美运行,但是我必须手动运行每个更改日志,完全失去了它的点master.xml
及其include
标签。
其他信息
该项目是使用 Jhipster 生成的。
python - Django + Gunincorn - 部署并保持连接到端口?
如果我错了,请纠正我:我可以使用gunicorn 部署一个 django 项目,例如我可以通过这种方式部署我的应用程序 - helloapp:
所以现在我的 django 站点在http://127.0.0.1:8000运行。
但是一旦我关闭/退出我的终端,它将不再可用。那么,即使我关闭了终端,如何让它保持连接到端口 8000 呢?
python-3.x - TensorFlow 库已编译为使用 SSE 指令,但这些指令在您的计算机上不可用。: 这个怎么解决?
我在我的 Ubuntu 17.04 32bit 上用 bazel 编译了 Tensorflow,并用 pip 安装了生成的 .whl。但是当我尝试导入 tensorflow 时,我收到了这个错误
我的巴泽尔版本:
我的系统提供了 gcc 信息:
这是我的“cat /proc/cpuinfo”输出:
编辑:如果我在使用“./configure”时添加“O2”,我得到了这个:
python - 在 Ubuntu 17.04 (libhdf5.so) 中安装 Caffe 时出错
在我的 Ubuntu 17.04 上安装(编译)Caffe(第一个版本)时,我收到以下错误:
*** 没有规则来制作目标 '/usr/lib/x86_64-linux-gnu/"libhdf5.so"',这是 'lib/libcaffe.so.1.0.0' 所需要的。停止。
我的电脑规格如下:
使用的 gcc:
OpenCV 版本:
CUDNN
版本是最新的什么v6.0
。
我已经在官方网站上添加了以下内容:
并修改Makefile.config
为:
并且Makefile
作为:
cmake
但是在运行.. 或make all -j8
or后仍然会出现相同的错误make pycaffe -j4
:
CMakeFiles/Makefile2:267:目标“src/caffe/CMakeFiles/caffe.dir/all”的配方失败 2:*** [src/caffe/CMakeFiles/caffe.dir/all] 错误 2
CMakeFiles/Makefile2:1129:目标“python/CMakeFiles/pycaffe.dir/rule”的配方失败 make 1:*** [python/CMakeFiles/pycaffe.dir/rule] 错误 2
Makefile:487:目标“pycaffe”的配方失败 make:*** [pycaffe] 错误 2
以下是执行后的相关包列表:
然后:
结果如下:
非常感谢任何帮助,因为我最近几天正在努力安装 Caffe。另外,我考虑安装Caffe2,但我无法安装那个,嗯。