Unable to locate bob-dev

91 views
Skip to first unread message

houda kadi

unread,
Dec 2, 2015, 7:07:24 PM12/2/15
to bob-devel
Hello,

While trying to execute the command line :
sudo apt-get install bob bob-dev sox libsox-dev i have the error : 
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package bob-dev

How can i solve this please?

Thanks

Laurent El Shafey

unread,
Dec 2, 2015, 7:22:58 PM12/2/15
to bob-...@googlegroups.com
Hello,

In contrast to Bob v1, there is currently no PPA for Bob v2 (AFAIK), which has been split into several (python) modules.

Please follow the installation instructions, which now means:
1. Install the dependencies using the apt tools for your distribution (as you've tried):

2. Use zc-buildout to install the bob modules you wish:
(don't forget to add bob.bio.spear to the eggs' list as it seems that is what you want)

Best,
Laurent

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

houda kadi

unread,
Dec 2, 2015, 7:57:54 PM12/2/15
to bob-...@googlegroups.com
Hi,

Thank you for your reply, this solved the problem.

I have a question plz, what is the diffrence between using extensions = mr.developer, and extensions = bob.buildout in the buildout.cfg file?

cheers


You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

Laurent El Shafey

unread,
Dec 2, 2015, 8:07:56 PM12/2/15
to bob-...@googlegroups.com
Hi,

mr.developer and bob.buildout are two different 'extensions' for buildout.
bob.buildout is a bob-specific extension, while mr.developer allows you to install development versions of (possibly your own) packages (e.g. from git [see https://github.com/bioidiap/bob.bio.base/blob/master/buildout.cfg] or from your local file system) rather than PyPI's versions.

Best,
Laurent

houda kadi

unread,
Dec 2, 2015, 9:08:44 PM12/2/15
to bob-...@googlegroups.com
Hey Laurent,

While trying to run the buildout, i get :

[100%] Built target bob_learn_em
make[1]: Leaving directory `/home/houda/Work/work_02_12/test/src/bob.learn.em/build/build_cmake/bob_learn_em'
/usr/bin/cmake -E cmake_progress_start /home/houda/Work/work_02_12/test/src/bob.learn.em/build/build_cmake/bob_learn_em/CMakeFiles 0
bob/learn/em/kmeans_trainer.cpp: In function ‘PyObject* PyBobLearnEMKMeansTrainer_initialize(PyBobLearnEMKMeansTrainerObject*, PyObject*, PyObject*)’:
bob/learn/em/kmeans_trainer.cpp:352:31: error: no matching function for call to ‘bob::learn::em::KMeansTrainer::setRng(boost::random::mt19937*&)’
     self->cxx->setRng(rng->rng);
                               ^
bob/learn/em/kmeans_trainer.cpp:352:31: note: candidate is:
In file included from bob/learn/em/main.h:30:0,
                 from bob/learn/em/kmeans_trainer.cpp:10:
/home/houda/Work/work_02_12/test/src/bob.learn.em/bob/learn/em/include/bob.learn.em/KMeansTrainer.h:113:10: note: void bob::learn::em::KMeansTrainer::setRng(boost::shared_ptr<boost::random::mersenne_twister_engine<unsigned int, 32u, 624u, 397u, 31u, 2567483615u, 11u, 4294967295u, 7u, 2636928640u, 15u, 4022730752u, 18u, 1812433253u> >)
     void setRng(const boost::shared_ptr<boost::mt19937> rng)
          ^
/home/houda/Work/work_02_12/test/src/bob.learn.em/bob/learn/em/include/bob.learn.em/KMeansTrainer.h:113:10: note:   no known conversion for argument 1 from ‘boost::random::mt19937* {aka boost::random::mersenne_twister_engine<unsigned int, 32u, 624u, 397u, 31u, 2567483615u, 11u, 4294967295u, 7u, 2636928640u, 15u, 4022730752u, 18u, 1812433253u>*}’ to ‘boost::shared_ptr<boost::random::mersenne_twister_engine<unsigned int, 32u, 624u, 397u, 31u, 2567483615u, 11u, 4294967295u, 7u, 2636928640u, 15u, 4022730752u, 18u, 1812433253u> >’
error: command 'i686-linux-gnu-gcc' failed with exit status 1
While:
  Installing.
  Processing develop directory '/home/houda/Work/work_02_12/test/src/bob.learn.em'.

An internal error occurred due to a bug in either zc.buildout or in a
recipe being used:
Traceback (most recent call last):
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 1992, in main
    getattr(buildout, command)(args)
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 528, in install
    installed_develop_eggs = self._develop()
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 770, in _develop
    zc.buildout.easy_install.develop(setup, dest)
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/easy_install.py", line 1020, in develop
    call_subprocess(args)
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/easy_install.py", line 160, in call_subprocess
    % repr(args)[1:-1])
Exception: Failed to run command:
'/usr/bin/python', '/tmp/tmp6vjc9D', '-q', 'develop', '-mN', '-d', '/home/houda/Work/work_02_12/test/develop-eggs/tmpcQ5oWGbuild'


How can i solve this please?

regards,

Manuel Günther

unread,
Dec 2, 2015, 9:17:17 PM12/2/15
to bob-devel
Hi,

I can understand, where your issue comes from. It is just weired that I didn't see that problem before.

The issue is that I was lately porting the python bindings of bob.core. I have updated the rng class to have a boost::shaped_ptr instead of a raw C pointer.
As you are using mr.developer, you might got stuck between the times, where I already had ported bob.core, but not yet bob.learn.em. Now, this is done as well.
To make s long story short: Try

./bin/develop update
./bin/buildout

Cheers
Manuel

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

houda kadi

unread,
Dec 3, 2015, 10:01:03 AM12/3/15
to bob-...@googlegroups.com
Hello,

Thank you for your reply,

Yes i'm using mr.developer in my buildout.cfg, and when trying to execute ./bin/develop update, i have no directory named develop!

Best regards..



--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Manuel Günther

unread,
Dec 3, 2015, 11:46:16 AM12/3/15
to bob-devel
What do you mean with "i have no directory named develop"? You don't need a directory called develop. ./bin/develop is an executable that you should get after running buildout.

Now, I see. As buildout didn't run through, you don't have the bin/develop executable. OK, simply go to the directory src/bob.learn.em and call "git pull". Than, go back to you main directory and try to run buildout again.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+unsubscribe@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+unsubscribe@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

houda kadi

unread,
Dec 3, 2015, 6:20:48 PM12/3/15
to bob-...@googlegroups.com
Hello,

The problem still persist, i called the command line "git pull", and then trying to run the buildout but i still have the same error as before.
The attached file is my buildout.cfg.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
Cordialement
Houda Kadi
FST | USMBA | Fes | Maroc
Gsm : 0676410030

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/

---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.
buildout.cfg

Manuel Günther

unread,
Dec 3, 2015, 7:14:12 PM12/3/15
to bob-devel
Hey, we are getting closer. to be able to use bob functionality, you need to have the bob.buildout extension enabled. Only this will assure that bob packages will be build in the correct order (as there are inter-package dependencies), see https://github.com/idiap/bob/wiki/Installation#using-zcbuildout-for-production

So, please try to use:

extensions = bob.buildout
             mr.developer

in your buildout.cfg


Am Donnerstag, 3. Dezember 2015 16:20:48 UTC-7 schrieb houda kadi:
Hello,

The problem still persist, i called the command line "git pull", and then trying to run the buildout but i still have the same error as before.

houda kadi

unread,
Dec 3, 2015, 7:36:44 PM12/3/15
to bob-...@googlegroups.com
Hi,

i have this error now :
Getting distribution for 'bob.buildout'.
Got bob.buildout 2.0.9.
Getting distribution for 'mr.developer'.
Got mr.developer 1.34.
Getting distribution for 'zc.recipe.egg>=2.0.0a3'.
Got zc.recipe.egg 2.0.3.
While:
  Installing.
  Loading extensions.


An internal error occurred due to a bug in either zc.buildout or in a
recipe being used:
Traceback (most recent call last):
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 1992, in main
    getattr(buildout, command)(args)
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 507, in install
    self._load_extensions()
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 1039, in _load_extensions
    ep.load()(self)
  File "build/bdist.linux-i686/egg/pkg_resources/__init__.py", line 2380, in load
    return self.resolve()
  File "build/bdist.linux-i686/egg/pkg_resources/__init__.py", line 2386, in resolve
    module = __import__(self.module_name, fromlist=['__name__'], level=0)
ImportError: No module named buildout.extension



--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Manuel Günther

unread,
Dec 3, 2015, 7:56:20 PM12/3/15
to bob-devel
This looks odd, I haven't seen that before. Did you try to clean up everything and start from scratch (meaning, leaving only the buildout.cfg and the bootstrap-buildout.py and removing all automatically generated and downloaded packages)?
If this doesn't help, I am out of ideas, but maybe Andre (the author of bob.buildout) might help.

Laurent El Shafey

unread,
Dec 3, 2015, 11:10:24 PM12/3/15
to bob-...@googlegroups.com
I agree with Manuel. This looks like a 'polluted' buildout environment.
I've tried your buildout.cfg (adding the missing bob.buildout in the extensions), and I can successfully build the libraries without any problem.

Best,
Laurent

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to the Google Groups "bob-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bob-devel+...@googlegroups.com.

André Anjos

unread,
Dec 4, 2015, 3:29:14 AM12/4/15
to bob-...@googlegroups.com

On Fri, Dec 4, 2015 at 1:36 AM, houda kadi <houda...@gmail.com> wrote:
An internal error occurred due to a bug in either zc.buildout or in a
recipe being used:
Traceback (most recent call last):
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 1992, in main
    getattr(buildout, command)(args)
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 507, in install
    self._load_extensions()
  File "/home/houda/Work/work_02_12/test/eggs/zc.buildout-2.5.0-py2.7.egg/zc/buildout/buildout.py", line 1039, in _load_extensions
    ep.load()(self)
  File "build/bdist.linux-i686/egg/pkg_resources/__init__.py", line 2380, in load
    return self.resolve()
  File "build/bdist.linux-i686/egg/pkg_resources/__init__.py", line 2386, in resolve
    module = __import__(self.module_name, fromlist=['__name__'], level=0)
ImportError: No module named buildout.extension


Hello,

This is normally caused by the fact you also have Bob v1 installed on your system. Make sure to uninstall it, cleanup and restart. It should go without problems.

Best, A


--
Dr. André Anjos
Idiap Research Institute
Centre du Parc - rue Marconi 19
CH-1920 Martigny, Suisse
Phone: +41 27 721 7763
Fax: +41 27 721 7712
http://andreanjos.org

houda kadi

unread,
Dec 21, 2015, 4:42:16 PM12/21/15
to bob-...@googlegroups.com
Hello,

Thank you for your replies, now everything goes well.

Thank you very much.

Hope your week goes well,

Best Regards

Houda

--
-- You received this message because you are subscribed to the Google Groups bob-devel group. To post to this group, send email to bob-...@googlegroups.com. To unsubscribe from this group, send email to bob-devel+...@googlegroups.com. For more options, visit this group at https://groups.google.com/d/forum/bob-devel or directly the project website at http://idiap.github.com/bob/
---
You received this message because you are subscribed to a topic in the Google Groups "bob-devel" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bob-devel/nCEM_YGks00/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bob-devel+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages