我在Ubuntu14.04上部署了apache 0.23,这个错误来自最后一步
# Run Python framework (Exits after successfully running some tasks.).
$ ./src/examples/python/test-framework 127.0.0.1:5050
source code:
----
25 import mesos.native
-----
Mesos/src/examples/python/test_framework.py line 25, mesos.native could not found有人能帮我解决这个问题吗?
发布于 2015-08-03 13:27:37
您可以尝试通过yum或apt-get安装mesos。
https://open.mesosphere.com/getting-started/datacenter/install/
Ubuntu:
# Setup
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
DISTRO=$(lsb_release -is | tr '[:upper:]' '[:lower:]')
CODENAME=$(lsb_release -cs)
# Add the repository
echo "deb http://repos.mesosphere.com/${DISTRO} ${CODENAME} main" | \
sudo tee /etc/apt/sources.list.d/mesosphere.list
sudo apt-get -y update
sudo apt-get -y install mesosCentOS 6:
# Add the repository
sudo rpm -Uvh http://repos.mesosphere.com/el/6/noarch/RPMS/mesosphere-el-repo-6-2.noarch.rpm
sudo yum -y install mesos我可以在上面引进美索的成功。
https://stackoverflow.com/questions/31778838
复制相似问题