Sorry for spamming, just saw your reply on JIRA, let me checkout 
https://mesosphere.com/downloads/


-----Original Message-----
From: Kapil Malik [mailto:[email protected]] 
Sent: 14 September 2015 21:20
To: [email protected]
Subject: RE: mesos.native could not found

Hi Haosdent,

Thank you, yes it's working fine for 0.24.

However, consider the scenario -

I have a mesos cluster in production. I want to run a custom mesos framework 
written in python.
However, for that, I need mesos.native package installed on the box. How do I 
do that?
I see the interface egg at https://pypi.python.org/pypi/mesos.interface
However, there's no such thing as https://pypi.python.org/pypi/mesos.native

Would you suggest me to always locally build mesos from git and manually 
install the eggs, say from  /git/mesos/build/src/python/dist directory, on the 
box where I am running my custom mesos framework in python?

Thanks and regards,

Kapil Malik | [email protected] | 33430 / 8800836581

-----Original Message-----
From: haosdent [mailto:[email protected]]
Sent: 11 September 2015 22:13
To: dev
Subject: Re: mesos.native could not found

This bug is fixed in mesos 0.24 Could you use mesos 0.24 and try again?

On Sat, Sep 12, 2015 at 12:37 AM, Kapil Malik <[email protected]> wrote:

> Hi Haosdent / Jian,
>
>
>
> I am facing the same error on Centos 7.0.1406. Were you able to 
> resolve the issue?
>
>
>
> Specifically, I cloned mesos repository (0.22.1) and did make, make 
> install.
>
> However, it adds only mesos.cli in /usr/lib/python2.7/site-packages 
> directory.
>
> I can install interface via sudo pip install mesos.interface
>
> But it still leaves native module.
>
>
>
> [centos@ip-10-0-0-30 build]$ ./src/examples/python/test-framework
> 10.0.0.30:5050
>
> Traceback (most recent call last):
>
>   File
> "/home/centos/git/mesos/build/../src/examples/python/test_framework.py
> ",
> line 25, in <module>
>
>     import mesos.native
>
> ImportError: No module named native
>
>
>
> Any suggestions? Python is a hard requirement for my usecase, so I 
> will be extremely thankful for any advice.
>
>
>
> Thanks and regards,
>
>
>
> Kapil Malik | [email protected] | 33430 / 8800836581
>
>
>
> -----Original Message-----
> From: haosdent [mailto:[email protected]]
> Sent: 04 August 2015 08:59
> To: [email protected]
> Subject: Re: mesos.native could not found
>
>
>
> Hi, Jian Bo. Let me contact you directly to avoid make the dev mail 
> list too noisy.
>
>
>
> On Tue, Aug 4, 2015 at 11:26 AM, Jian Bo <[email protected]<mailto:
> [email protected]>> wrote:
>
>
>
> >   1 #!/usr/bin/env bash
>
> >   2
>
> >   3 # This script uses MESOS_SOURCE_DIR and MESOS_BUILD_DIR which 
> > come
>
> >   4 # from configuration substitutions.
>
> >   5 MESOS_SOURCE_DIR=/home/pugna/Mesos/mesos-0.23.0/build/..
>
> >   6 MESOS_BUILD_DIR=/home/pugna/Mesos/mesos-0.23.0/build
>
> >   7
>
> >   8 # Use colors for errors.
>
> >   9 . ${MESOS_SOURCE_DIR}/support/colors.sh
>
> >  10
>
> >  11 # Force the use of the Python interpreter configured during building.
>
> >  12 test ! -z "${PYTHON}" && \
>
> >  13   echo "${RED}Ignoring PYTHON environment variable (using
>
> > /usr/bin/python)${NORMAL}"
>
> >  14
>
> >  15 PYTHON=/usr/bin/python
>
> >  16
>
> >  17 DISTRIBUTE=`echo ${MESOS_BUILD_DIR}/3rdparty/distribute-*/`
>
> >  18
>
> >  19 # Just warn in the case when build with --disable-bundled.
>
> >  20 test ! -e ${DISTRIBUTE} && \
>
> >  21   echo "${RED}Failed to find ${DISTRIBUTE}${NORMAL}"
>
> >  22
>
> >  23 PROTOBUF=`echo
>
> > ${MESOS_BUILD_DIR}/3rdparty/libprocess/3rdparty/protobuf-*/python/`
>
> >  24
>
> >  25 test ! -e ${PROTOBUF} && \
>
> >  26   echo "${RED}Failed to find ${PROTOBUF}${NORMAL}"
>
> >  27
>
> >  28 MESOS_EGGS=$(find ${MESOS_BUILD_DIR}/src/python/dist -name "*.egg"
>
> > | tr "\\n<file:///\\n>" ":")
>
> >  29
>
> >  30 SCRIPT=${MESOS_SOURCE_DIR}/src/examples/python/test_framework.py
>
> >  31
>
> >  32 test ! -e ${SCRIPT} && \
>
> >  33   echo "${RED}Failed to find ${SCRIPT}${NORMAL}" && \
>
> >  34   exit 1
>
> >  35
>
> >  36 # Need to run in the directory containing this script so that 
> > the
>
> >  37 # framework is able to find the executor.
>
> >  38 cd `dirname ${0}`
>
> >  39
>
> >  40 PYTHONPATH="${DISTRIBUTE}:${PROTOBUF}:${MESOS_EGGS}" \
>
> >  41   exec ${PYTHON} ${SCRIPT} "${@}"
>
> >
>
> > On Tue, Aug 4, 2015 at 11:19 AM, haosdent <[email protected]<mailto:
> [email protected]>> wrote:
>
> >
>
> > > Could you execute "vim ./src/examples/python/test-framework" under
>
> > > build, and find something like this """
>
> > > PYTHONPATH="${DISTRIBUTE}:${PROTOBUF}:${MESOS_EGGS}" \
>
> > >   exec ${PYTHON} ${SCRIPT} "${@}"
>
> > > """
>
> > > in test-framework?
>
> > >
>
> > > On Tue, Aug 4, 2015 at 11:11 AM, Jian Bo <[email protected]
> <mailto:[email protected]>> wrote:
>
> > >
>
> > > > May I ask a question, is there something in test-framework 
> > > > refered
>
> > > > to
>
> > > pwd?
>
> > > >
>
> > > > pugna@pugna-pc:~/Mesos/mesos-0.23.0/build$<mailto:pugna@pugna-pc
> :~/Mesos/mesos-0.23.0/build$>
>
> > > > ./src/examples/python/test-framework 127.0.0.1:5050 Traceback
>
> > > > (most recent call last):
>
> > > >   File
>
> > > >
>
> > > >
>
> > >
>
> > "/home/pugna/Mesos/mesos-0.23.0/build/../src/examples/python/test_fr
> > am
>
> > ework.py",
>
> > > > line 25, in <module>
>
> > > >     import mesos.native
>
> > > > ImportError: No module named native
>
> > > >
>
> > > > On Tue, Aug 4, 2015 at 10:48 AM, haosdent <[email protected]
> <mailto:[email protected]>> wrote:
>
> > > >
>
> > > > > You execute "./src/examples/python/test-framework 127.0.0.1:5050"
>
> > or "
>
> > > > > ../src/examples/python/test-framework 127.0.0.1:5050"? There 
> > > > > are
>
> > > > > different.
>
> > > > > Because there is also have a src directory under build.
>
> > > > >
>
> > > > > On Tue, Aug 4, 2015 at 10:44 AM, Jian Bo
>
> > > > > <[email protected]<mailto:[email protected]>>
>
> > > wrote:
>
> > > > >
>
> > > > > > Sorry. I get  the same result.
>
> > > > > > pugna@pugna-pc:~/Mesos/mesos-0.23.0/build$<mailto:pugna@pugn
> > > > > > a-pc
> :~/Mesos/mesos-0.23.0/build$>
>
> > > > > > ../src/examples/python/test_framework.py 127.0.0.1:5050
>
> > > > > > Traceback (most recent call last):
>
> > > > > >   File "../src/examples/python/test_framework.py", line 25, 
> > > > > > in
>
> > > <module>
>
> > > > > >     import mesos.native
>
> > > > > > ImportError: No module named native
>
> > > > > >
>
> > > > > > On Tue, Aug 4, 2015 at 10:38 AM, haosdent 
> > > > > > <[email protected]
> <mailto:[email protected]>>
>
> > > wrote:
>
> > > > > >
>
> > > > > > > No, I mean  try execute
>
> > > > > > > "./src/examples/python/test-framework
>
> > > > > > > 127.0.0.1:5050"
>
> > > > > > > under ~/Mesos/mesos-0.23.0/build/. Not in
>
> > > > > > > ~/Mesos/mesos-0.23.0/
>
> > > > > > >
>
> > > > > > > On Tue, Aug 4, 2015 at 10:23 AM, Jian Bo
>
> > > > > > > <[email protected]
>
> > >
>
> > > > > wrote:
>
> > > > > > >
>
> > > > > > > > pugna@pugna-pc
> :~/Mesos/mesos-0.23.0/src/examples/python$<mailto:pugna@pugna-pc
> :~/Mesos/mesos-0.23.0/src/examples/python$>
>
> > > > > > > > ./test_framework.py 127.0.0.1:5050 Traceback (most 
> > > > > > > > recent
>
> > > > > > > > call last):
>
> > > > > > > >   File "./test_framework.py", line 25, in <module>
>
> > > > > > > >     import mesos.native
>
> > > > > > > > ImportError: No module named native
>
> > > > > > > >
>
> > > > > > > > On Tue, Aug 4, 2015 at 10:10 AM, haosdent
>
> > > > > > > > <[email protected]<mailto:[email protected]>>
>
> > > > > wrote:
>
> > > > > > > >
>
> > > > > > > > > Hi, @JianBo Could you try
>
> > "./src/examples/python/test-framework
>
> > > > > > > > > 127.0.0.1:5050" under ~/Mesos/mesos-0.23.0/build/, not
>
> > > > > > > > > in
>
> > > > > > > ~/Mesos/mesos-
>
> > > > > > > > > 0.23.0/build/src/examples/python.
>
> > > > > > > > >
>
> > > > > > > > > On Tue, Aug 4, 2015 at 9:54 AM, Jian Bo <
>
> > > [email protected]<mailto:[email protected]>>
>
> > > > > > > wrote:
>
> > > > > > > > >
>
> > > > > > > > > > This is my environment:
>
> > > > > > > > > > pugna@pugna-pc
>
> > > :~/Mesos/mesos-0.23.0/build/src/examples/python$
>
> > > > > > > > > > ./test-framework 127.0.0.1:5050 Traceback (most 
> > > > > > > > > > recent
>
> > > > > > > > > > call last):
>
> > > > > > > > > >   File
>
> > > > > > > > > >
>
> > > > > > > > > >
>
> > > > > > > > >
>
> > > > > > > >
>
> > > > > > >
>
> > > > > >
>
> > > > >
>
> > > >
>
> > >
>
> > "/home/pugna/Mesos/mesos-0.23.0/build/../src/examples/python/test_fr
> > am
>
> > ework.py",
>
> > > > > > > > > > line 25, in <module>
>
> > > > > > > > > >     import mesos.native
>
> > > > > > > > > > ImportError: No module named native pugna@pugna-pc
>
> > > :~/Mesos/mesos-0.23.0/build/src/examples/python$
>
> > > > > > > > > > pugna@pugna-pc
>
> > > :~/Mesos/mesos-0.23.0/build/src/examples/python$
>
> > > > > > > > > > pugna@pugna-pc
>
> > > :~/Mesos/mesos-0.23.0/build/src/examples/python$
>
> > > > > > > > > > pugna@pugna-pc
>
> > > :~/Mesos/mesos-0.23.0/build/src/examples/python$
>
> > > > > > > > > > pugna@pugna-pc
>
> > > :~/Mesos/mesos-0.23.0/build/src/examples/python$
>
> > > > > > > python
>
> > > > > > > > -c
>
> > > > > > > > > > 'import mesos; print mesos.__dict__;'
>
> > > > > > > > > > {'__name__': 'mesos', '__doc__': None, '__path__':
>
> > > > > > > > > > ['/usr/local/lib/python2.7/dist-packages/mesos']}
>
> > > > > > > > > > pugna@pugna-pc
>
> > > :~/Mesos/mesos-0.23.0/build/src/examples/python$
>
> > > > > > > > > >
>
> > > > > > > > > >
>
> > > > > > > > > > And "mesos.native-0.23.0-py2.6-linux-x86_64.egg
>
> > > > > > > > > > mesos.interface-0.23.0-py2.6.egg"
>
> > > > > > > > > >  these two packages are in
>
> > > > > /usr/local/lib/python2.7/dist-packages.
>
> > > > > > > > > >
>
> > > > > > > > > > On Tue, Aug 4, 2015 at 9:38 AM, Jian Bo <
>
> > > > [email protected]<mailto:[email protected]>>
>
> > > > > > > > wrote:
>
> > > > > > > > > >
>
> > > > > > > > > > > I'm sorry to give you no reply for a long time, 
> > > > > > > > > > > Here
>
> > > > > > > > > > > is  the ticket:
>
> > > > > > > > > > >
>
> > https://issues.apache.org/jira/browse/MESOS-3198?filter=-4
>
> > > > > > > > > > > MESOS-3198 <
>
> > > https://issues.apache.org/jira/browse/MESOS-3198
>
> > > > >
>
> > > > > > > > > > > I'll take your achievements for reference 
> > > > > > > > > > > carefully
>
> > > > > > > > > > > and
>
> > > give
>
> > > > > you
>
> > > > > > > > > feedback
>
> > > > > > > > > > > later.
>
> > > > > > > > > > > Thank you.
>
> > > > > > > > > > >
>
> > > > > > > > > > >
>
> > > > > > > > > > > On Mon, Aug 3, 2015 at 9:56 PM, haosdent <
>
> > > [email protected]<mailto:[email protected]>
>
> > > > >
>
> > > > > > > wrote:
>
> > > > > > > > > > >
>
> > > > > > > > > > >> And If I want to install mesos python eggs to
> sys.path.
>
> > I
>
> > > > need
>
> > > > > > to
>
> > > > > > > > > > execute
>
> > > > > > > > > > >> these steps:
>
> > > > > > > > > > >>
>
> > > > > > > > > > >> ```
>
> > > > > > > > > > >> cd build/src/python/interface sudo python 
> > > > > > > > > > >> setup.py
>
> > > > > > > > > > >> install ```
>
> > > > > > > > > > >>
>
> > > > > > > > > > >> ```
>
> > > > > > > > > > >> cd build/src/python/native sudo python setup.py
>
> > > > > > > > > > >> install ```
>
> > > > > > > > > > >>
>
> > > > > > > > > > >> And the eggs would install to
>
> > > > > > > /usr/lib/python2.6/site-packages/mesos.interface-0.23.0-py2.
>
> > > > > > > 6.egg
>
> > > > > > > > > > >> and
>
> > > > > > > > > > >>
>
> > > > > > > > > >
>
> > > > > > > > >
>
> > > > > > > >
>
> > > > > > >
>
> > > > > >
>
> > > > >
>
> > > >
>
> > >
>
> > /usr/lib64/python2.6/site-packages/mesos.native-0.23.0-py2.6-linux-x
> > 86
>
> > _64.egg
>
> > > > > > > > > > >> (CentOS 6.6 and python 2.6) finally.
>
> > > > > > > > > > >>
>
> > > > > > > > > > >> On Mon, Aug 3, 2015 at 9:49 PM, haosdent <
>
> > > > [email protected]<mailto:[email protected]>>
>
> > > > > > > > wrote:
>
> > > > > > > > > > >>
>
> > > > > > > > > > >> > Hi, @Jian Bo Although I don't execute "make
>
> > > > > > > > > > >> > install",
>
> > I
>
> > > > also
>
> > > > > > > could
>
> > > > > > > > > > >> execute
>
> > > > > > > > > > >> > "./src/examples/python/test-framework
>
> > > > > > > > > > >> > 127.0.0.1:5050
>
> > ".
>
> > > > > > Because
>
> > > > > > > > > > >> > "./src/examples/python/test-framework" would
>
> > > > > > > > > > >> > export
>
> > > > > PYTHONPATH
>
> > > > > > > > > > contains
>
> > > > > > > > > > >> > mesos eggs. Could you execute this in you build
>
> > > directory?
>
> > > > > > > > > > >> >
>
> > > > > > > > > > >> > On Mon, Aug 3, 2015 at 8:48 PM, haosdent <
>
> > > > > [email protected]<mailto:[email protected]>>
>
> > > > > > > > > wrote:
>
> > > > > > > > > > >> >
>
> > > > > > > > > > >> >> Could you create a ticket in
>
> > > > > > > issues.apache.org/jira/browse/MESOS
>
> > > > > > > > > to
>
> > > > > > > > > > >> >> track this? Thank you.
>
> > > > > > > > > > >> >>
>
> > > > > > > > > > >> >> On Mon, Aug 3, 2015 at 8:47 PM, haosdent <
>
> > > > > [email protected]<mailto:[email protected]>
>
> > > > > > >
>
> > > > > > > > > wrote:
>
> > > > > > > > > > >> >>
>
> > > > > > > > > > >> >>> Hi, @Jian Bo. After I clear my server
>
> > > > > > > > > > >> >>> environment. I
>
> > > > think
>
> > > > > > it
>
> > > > > > > > > should
>
> > > > > > > > > > >> >>> have a bug in the mesos python package, but I
>
> > > > > > > > > > >> >>> am not
>
> > > > sure
>
> > > > > > > about
>
> > > > > > > > > > this.
>
> > > > > > > > > > >> I
>
> > > > > > > > > > >> >>> execute these steps in Ubuntu/CentOS, and 
> > > > > > > > > > >> >>> could
>
> > > "import
>
> > > > > > mesos"
>
> > > > > > > > > > >> finally.
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>> ```
>
> > > > > > > > > > >> >>> sudo make uninstall sudo make install ``` ```
>
> > > > > > > > > > >> >>> touch
>
> > > > > > /usr/local/lib/python2.7/site-packages/mesos/__init__.py
>
> > > > > > > > (If
>
> > > > > > > > > > use
>
> > > > > > > > > > >> >>> python 2.7) or
>
> > > > > > > > > > >> >>> touch
>
> > > > > > /usr/local/lib/python2.7/site-packages/mesos/__init__.py
>
> > > > > > > > (If
>
> > > > > > > > > > use
>
> > > > > > > > > > >> >>> python 2.6)
>
> > > > > > > > > > >> >>> ```
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>> And
>
> > > > > > > > > > >> >>> ```
>
> > > > > > > > > > >> >>> python -c 'import mesos; print mesos.__dict__;'
>
> > > > > > > > > > >> >>> ```
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>> could pass.
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>> On Mon, Aug 3, 2015 at 6:07 PM, haosdent <
>
> > > > > > [email protected]<mailto:[email protected]>>
>
> > > > > > > > > > wrote:
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>>> I afraid it also some problem. I could 
> > > > > > > > > > >> >>>> import
>
> > > > > mesos.native
>
> > > > > > in
>
> > > > > > > > OSX
>
> > > > > > > > > > >> >>>> success while import mesos.native failed in
>
> > CentOS. I
>
> > > > am
>
> > > > > > not
>
> > > > > > > > sure
>
> > > > > > > > > > it
>
> > > > > > > > > > >> is
>
> > > > > > > > > > >> >>>> because of the bug of code or just because 
> > > > > > > > > > >> >>>> of
>
> > > > > > > > > > >> >>>> my
>
> > > dirty
>
> > > > > > > > > environment.
>
> > > > > > > > > > >> Let me
>
> > > > > > > > > > >> >>>> deep into it and give you feedback later.
>
> > > > > > > > > > >> >>>>
>
> > > > > > > > > > >> >>>> On Mon, Aug 3, 2015 at 5:23 PM, Jian Bo <
>
> > > > > > > > [email protected]<mailto:[email protected]>>
>
> > > > > > > > > > >> wrote:
>
> > > > > > > > > > >> >>>>
>
> > > > > > > > > > >> >>>>> It is very kind of you .
>
> > > > > > > > > > >> >>>>> In my
>
> >  /usr/local/lib/python2.7/site-packages/mesos
>
> > > > > ,
>
> > > > > > > > >  there
>
> > > > > > > > > > >> are
>
> > > > > > > > > > >> >>>>> two
>
> > > > > > > > > > >> >>>>> directory : interface/  native/
>
> > > > > > > > > > >> >>>>>
>
> > > > > > > > > > >> >>>>> interface/    :
>
> > > > > > > > > > >> >>>>> containerizer_pb2.py  containerizer_pb2.pyc
>
> > > > __init__.py
>
> > > > > > > > > > >> __init__.pyc
>
> > > > > > > > > > >> >>>>>  mesos_pb2.py  mesos_pb2.pyc
>
> > > > > > > > > > >> >>>>>
>
> > > > > > > > > > >> >>>>> native/   :
>
> > > > > > > > > > >> >>>>> __init__.py  __init__.pyc  _mesos.so*
>
> > > > > > > > > > >> >>>>>
>
> > > > > > > > > > >> >>>>> same to yours?
>
> > > > > > > > > > >> >>>>>
>
> > > > > > > > > > >> >>>>> On Mon, Aug 3, 2015 at 5:17 PM, haosdent <
>
> > > > > > > [email protected]<mailto:[email protected]>>
>
> > > > > > > > > > >> wrote:
>
> > > > > > > > > > >> >>>>>
>
> > > > > > > > > > >> >>>>> > In server (CentOS 6.6), it is located in
>
> > > > > > > > > > >> >>>>> > /usr/local/lib/python2.6/site-packages/me
> > > > > > > > > > >> >>>>> > so
>
> > > > > > > > > > >> >>>>> > s/
>
> > > > > > > > > > >> >>>>> >
>
> > > > > > > > > > >> >>>>> > On Mon, Aug 3, 2015 at 5:15 PM, haosdent 
> > > > > > > > > > >> >>>>> > <
>
> > > > > > > > [email protected]<mailto:[email protected]>>
>
> > > > > > > > > > >> wrote:
>
> > > > > > > > > > >> >>>>> >
>
> > > > > > > > > > >> >>>>> > > In my machine(OS X), it is located in
>
> > /usr/local/lib/python2.7/site-packages/mesos.
>
> > > > > > > > > > >> >>>>> > >
>
> > > > > > > > > > >> >>>>> > > On Mon, Aug 3, 2015 at 4:40 PM, Jian Bo 
> > > > > > > > > > >> >>>>> > > <
>
> > > > > > > > > > [email protected]<mailto:[email protected]
> > > > > > > > > > >
>
> > > > > > > > > > >> >
>
> > > > > > > > > > >> >>>>> wrote:
>
> > > > > > > > > > >> >>>>> > >
>
> > > > > > > > > > >> >>>>> > >> Thank you , but it doesn't work, the 
> > > > > > > > > > >> >>>>> > >> same
>
> > error
>
> > > > > comes
>
> > > > > > > > > agaig.
>
> > > > > > > > > > I
>
> > > > > > > > > > >> >>>>> doubt it
>
> > > > > > > > > > >> >>>>> > >> doesn't exist .
>
> > > > > > > > > > >> >>>>> > >> Can you tell me where this lib file 
> > > > > > > > > > >> >>>>> > >> should
> be
>
> > > > > > located?
>
> > > > > > > > > > >> >>>>> > >>
>
> > > > > > > > > > >> >>>>> > >> On Mon, Aug 3, 2015 at 4:29 PM, 
> > > > > > > > > > >> >>>>> > >> haosdent <
>
> > > > > > > > > [email protected]<mailto:[email protected]>
>
> > > > > > > > > > >
>
> > > > > > > > > > >> >>>>> wrote:
>
> > > > > > > > > > >> >>>>> > >>
>
> > > > > > > > > > >> >>>>> > >> > I think you need add
>
> > > > > > > > > /usr/local/libpython2.7/site-packages/
>
> > > > > > > > > > >> to
>
> > > > > > > > > > >> >>>>> your
>
> > > > > > > > > > >> >>>>> > >> > sys.path
>
> > > > > > > > > > >> >>>>> > >> >
>
> > > > > > > > > > >> >>>>> > >> > On Mon, Aug 3, 2015 at 3:54 PM, Jian 
> > > > > > > > > > >> >>>>> > >> > Bo <
>
> > > > > > > > > > >> [email protected]<mailto:jian.bo@nexusguard.
> > > > > > > > > > >> com>
>
> > > > > > > > > > >> >>>>> >
>
> > > > > > > > > > >> >>>>> > wrote:
>
> > > > > > > > > > >> >>>>> > >> >
>
> > > > > > > > > > >> >>>>> > >> > > 1 There is no explicit words like
> "error,
>
> > > > > > warning",
>
> > > > > > > > and
>
> > > > > > > > > > all
>
> > > > > > > > > > >> >>>>> the step
>
> > > > > > > > > > >> >>>>> > >> of
>
> > > > > > > > > > >> >>>>> > >> > > "make check " run well(  .....[OK] ).
>
> > > > > > > > > > >> >>>>> > >> > > 2 Yeah, I find "mesos/
>
> > > > > > > > > >  mesos.interface-0.23.0.dist-info/
>
> > > > > > > > > > >> >>>>> > >> > >  
> > > > > > > > > > >> >>>>> > >> > > mesos.interface-0.23.0-py2.7-nspkg
> > > > > > > > > > >> >>>>> > >> > > .pth
>
> > > > > > > > > > >> >>>>> > >> mesos.native-0.23.0.dist-info/
>
> > > > > > > > > > >> >>>>> > >> > >  mesos.native-0.23.0-py2.7-nspkg.pth "
>
> > in
>
> > > > > > > > > > >> >>>>> > >> > > /usr/local/libpython2.7/site-packa
> > > > > > > > > > >> >>>>> > >> > > ges/
>
> > > > > > > > > > >> >>>>> > >> > >
>
> > > > > > > > > > >> >>>>> > >> > > On Mon, Aug 3, 2015 at 3:34 PM,
> haosdent
>
> > <
>
> > > > > > > > > > >> [email protected]<mailto:[email protected]>>
>
> > > > > > > > > > >> >>>>> > wrote:
>
> > > > > > > > > > >> >>>>> > >> > >
>
> > > > > > > > > > >> >>>>> > >> > > > After you execute "make 
> > > > > > > > > > >> >>>>> > >> > > > install",
> could
>
> > > you
>
> > > > > > find
>
> > > > > > > > some
>
> > > > > > > > > > >> error
>
> > > > > > > > > > >> >>>>> in the
>
> > > > > > > > > > >> >>>>> > >> log?
>
> > > > > > > > > > >> >>>>> > >> > > Or
>
> > > > > > > > > > >> >>>>> > >> > > > find some thing like
>
> > > > > > > > > > >> >>>>> /usr/lib64/python2.7/site-packages/mesos*
> > > > > > > > > > >> >>>>> in
>
> > > > > > > > > > >> >>>>> > >> > python
>
> > > > > > > > > > >> >>>>> > >> > > > sys.path?
>
> > > > > > > > > > >> >>>>> > >> > > >
>
> > > > > > > > > > >> >>>>> > >> > > > On Mon, Aug 3, 2015 at 3:22 PM, 
> > > > > > > > > > >> >>>>> > >> > > > Jian
>
> > Bo <
>
> > > > > > > > > > >> >>>>> [email protected]<mailto:
> [email protected]>>
>
> > > > > > > > > > >> >>>>> > >> > wrote:
>
> > > > > > > > > > >> >>>>> > >> > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > I follow the gettingstarted 
> > > > > > > > > > >> >>>>> > >> > > > > page of
>
> > the
>
> > > > > > > official
>
> > > > > > > > > > >> website,
>
> > > > > > > > > > >> >>>>> then
>
> > > > > > > > > > >> >>>>> > >> > download
>
> > > > > > > > > > >> >>>>> > >> > > > the
>
> > > > > > > > > > >> >>>>> > >> > > > > tar package.
>
> > > > > > > > > > >> >>>>> > >> > > > > Furthermore , all steps above 
> > > > > > > > > > >> >>>>> > >> > > > > run
>
> > well.
>
> > > > > > > > > > >> >>>>> > >> > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > On Mon, Aug 3, 2015 at 3:13 
> > > > > > > > > > >> >>>>> > >> > > > > PM,
>
> > > haosdent
>
> > > > <
>
> > > > > > > > > > >> >>>>> [email protected]<mailto:[email protected]
> > > > > > > > > > >> >>>>> m>>
>
> > > > > > > > > > >> >>>>> > >> wrote:
>
> > > > > > > > > > >> >>>>> > >> > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > > Hello, how you install
> mesos-0.23?
>
> > > You
>
> > > > > > > install
>
> > > > > > > > > from
>
> > > > > > > > > > >> >>>>> build
>
> > > > > > > > > > >> >>>>> > >> source?
>
> > > > > > > > > > >> >>>>> > >> > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > > On Mon, Aug 3, 2015 at 3:01 
> > > > > > > > > > >> >>>>> > >> > > > > > PM,
>
> > Jian
>
> > > > Bo <
>
> > > > > > > > > > >> >>>>> > [email protected]<mailto:
> [email protected]>
>
> > > > > > > > > > >> >>>>> > >> >
>
> > > > > > > > > > >> >>>>> > >> > > > wrote:
>
> > > > > > > > > > >> >>>>> > >> > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > > > Hi dev-friends,
>
> > > > > > > > > > >> >>>>> > >> > > > > > >   I deploy apache
> > > > > > > > > > >> >>>>> > >> > > > > > > mesos-0.23 on
>
> > > > > > Ubuntu14.04
>
> > > > > > > > > This
>
> > > > > > > > > > >> >>>>> error comes
>
> > > > > > > > > > >> >>>>> > >> from
>
> > > > > > > > > > >> >>>>> > >> > > the
>
> > > > > > > > > > >> >>>>> > >> > > > > > last
>
> > > > > > > > > > >> >>>>> > >> > > > > > > step "# Run Python 
> > > > > > > > > > >> >>>>> > >> > > > > > > framework
>
> > (Exits
>
> > > > > after
>
> > > > > > > > > > >> successfully
>
> > > > > > > > > > >> >>>>> > running
>
> > > > > > > > > > >> >>>>> > >> > some
>
> > > > > > > > > > >> >>>>> > >> > > > > > > tasks.). $
>
> > > > > > > > ./src/examples/python/test-framework
>
> > > > > > > > > > >> >>>>> > >> 127.0.0.1:5050"
>
> > > > > > > > > > >> >>>>> > >> > > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > > >
>
> > > > > > Mesos/src/examples/python/test_framework.py
>
> > > > > > > > > line
>
> > > > > > > > > > >> 25,
>
> > > > > > > > > > >> >>>>> > >> mesos.native
>
> > > > > > > > > > >> >>>>> > >> > > > could
>
> > > > > > > > > > >> >>>>> > >> > > > > > not
>
> > > > > > > > > > >> >>>>> > >> > > > > > > found
>
> > > > > > > > > > >> >>>>> > >> > > > > > > <
>
> > > > > > > > > > >> >>>>> > >> > > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > >
>
> > > > > > > > > > >> >>>>> > >> > > >
>
> > > > > > > > > > >> >>>>> > >> > >
>
> > > > > > > > > > >> >>>>> > >> >
>
> > > > > > > > > > >> >>>>> > >>
>
> > > > > > > > > > >> >>>>> >
>
> > > > > > > > > > >> >>>>>
>
> > > > > > > > > > >>
>
> > > > > > > > > >
>
> > > > > > > > >
>
> > > > > > > >
>
> > > > > > >
>
> > > > > >
>
> > > > >
>
> > > >
>
> > >
>
> >
> http://stackoverflow.com/questions/31778838/mesos-src-examples-python-
> test-framework-py-line-25-mesos-native-could-not-foun
>
> > > > > > > > > > >> >>>>> > >> > > > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > > > Anyone who can help me 
> > > > > > > > > > >> >>>>> > >> > > > > > > solve
> this
>
> > > > > > problem?
>
> > > > > > > > > > >> >>>>> > >> > > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > > > --
>
> > > > > > > > > > >> >>>>> > >> > > > > > Best Regards,
>
> > > > > > > > > > >> >>>>> > >> > > > > > Haosdent Huang
>
> > > > > > > > > > >> >>>>> > >> > > > > >
>
> > > > > > > > > > >> >>>>> > >> > > > >
>
> > > > > > > > > > >> >>>>> > >> > > >
>
> > > > > > > > > > >> >>>>> > >> > > >
>
> > > > > > > > > > >> >>>>> > >> > > >
>
> > > > > > > > > > >> >>>>> > >> > > > --
>
> > > > > > > > > > >> >>>>> > >> > > > Best Regards,
>
> > > > > > > > > > >> >>>>> > >> > > > Haosdent Huang
>
> > > > > > > > > > >> >>>>> > >> > > >
>
> > > > > > > > > > >> >>>>> > >> > >
>
> > > > > > > > > > >> >>>>> > >> >
>
> > > > > > > > > > >> >>>>> > >> >
>
> > > > > > > > > > >> >>>>> > >> >
>
> > > > > > > > > > >> >>>>> > >> > --
>
> > > > > > > > > > >> >>>>> > >> > Best Regards,
>
> > > > > > > > > > >> >>>>> > >> > Haosdent Huang
>
> > > > > > > > > > >> >>>>> > >> >
>
> > > > > > > > > > >> >>>>> > >>
>
> > > > > > > > > > >> >>>>> > >
>
> > > > > > > > > > >> >>>>> > >
>
> > > > > > > > > > >> >>>>> > >
>
> > > > > > > > > > >> >>>>> > > --
>
> > > > > > > > > > >> >>>>> > > Best Regards,
>
> > > > > > > > > > >> >>>>> > > Haosdent Huang
>
> > > > > > > > > > >> >>>>> > >
>
> > > > > > > > > > >> >>>>> >
>
> > > > > > > > > > >> >>>>> >
>
> > > > > > > > > > >> >>>>> >
>
> > > > > > > > > > >> >>>>> > --
>
> > > > > > > > > > >> >>>>> > Best Regards,
>
> > > > > > > > > > >> >>>>> > Haosdent Huang
>
> > > > > > > > > > >> >>>>> >
>
> > > > > > > > > > >> >>>>>
>
> > > > > > > > > > >> >>>>
>
> > > > > > > > > > >> >>>>
>
> > > > > > > > > > >> >>>>
>
> > > > > > > > > > >> >>>> --
>
> > > > > > > > > > >> >>>> Best Regards,
>
> > > > > > > > > > >> >>>> Haosdent Huang
>
> > > > > > > > > > >> >>>>
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>> --
>
> > > > > > > > > > >> >>> Best Regards,
>
> > > > > > > > > > >> >>> Haosdent Huang
>
> > > > > > > > > > >> >>>
>
> > > > > > > > > > >> >>
>
> > > > > > > > > > >> >>
>
> > > > > > > > > > >> >>
>
> > > > > > > > > > >> >> --
>
> > > > > > > > > > >> >> Best Regards,
>
> > > > > > > > > > >> >> Haosdent Huang
>
> > > > > > > > > > >> >>
>
> > > > > > > > > > >> >
>
> > > > > > > > > > >> >
>
> > > > > > > > > > >> >
>
> > > > > > > > > > >> > --
>
> > > > > > > > > > >> > Best Regards,
>
> > > > > > > > > > >> > Haosdent Huang
>
> > > > > > > > > > >> >
>
> > > > > > > > > > >>
>
> > > > > > > > > > >>
>
> > > > > > > > > > >>
>
> > > > > > > > > > >> --
>
> > > > > > > > > > >> Best Regards,
>
> > > > > > > > > > >> Haosdent Huang
>
> > > > > > > > > > >>
>
> > > > > > > > > > >
>
> > > > > > > > > > >
>
> > > > > > > > > >
>
> > > > > > > > >
>
> > > > > > > > >
>
> > > > > > > > >
>
> > > > > > > > > --
>
> > > > > > > > > Best Regards,
>
> > > > > > > > > Haosdent Huang
>
> > > > > > > > >
>
> > > > > > > >
>
> > > > > > >
>
> > > > > > >
>
> > > > > > >
>
> > > > > > > --
>
> > > > > > > Best Regards,
>
> > > > > > > Haosdent Huang
>
> > > > > > >
>
> > > > > >
>
> > > > >
>
> > > > >
>
> > > > >
>
> > > > > --
>
> > > > > Best Regards,
>
> > > > > Haosdent Huang
>
> > > > >
>
> > > >
>
> > >
>
> > >
>
> > >
>
> > > --
>
> > > Best Regards,
>
> > > Haosdent Huang
>
> > >
>
> >
>
>
>
>
>
>
>
> --
>
> Best Regards,
>
> Haosdent Huang
>



--
Best Regards,
Haosdent Huang

Reply via email to