UPDATE: This is no longer an issue in Taurus v>4 since the change to setuptools in [9f976f]. And as a workaround, the --egg
parameter solves the problem for Taurus < 4 , as mentioned in the comments
Installing taurus with easy_install appears to work, but:
-resources are not built
-extra_packages are not installed
IMHO, doing "easy_install taurus" should yield similar results than downloading the tgz and doing "python setup.py install"
As a hint:
during easy_install, the following is printed:
cpascual@pc218:~/src/svn/taurus/dist$ PYTHONPATH=/tmp/kkinstdirtaurus311 easy_install --install-dir=/tmp/kkinstdirtaurus311 taurus-3.1.1.tar.gz Processing taurus-3.1.1.tar.gz Running taurus-3.1.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-Tmbuxl/taurus-3.1.1/egg-dist-tmp-elgCV3
But surprisingly to me, the command "bdist_egg" cannot be called manually (?)
Sardana: Sardana GIT: 5200b4bfd46bb468bf9b9e39
note: bdist_egg is part of setuptools and not of distutils
This worked for me on debian testing:~~~~~~~~
cpascual@pc218:~/src/sardana/taurus(release-taurus-Jul14)$ mkdir /tmp/kkinstdirtaurus330
cpascual@pc218:~/src/sardana/taurus(release-taurus-Jul14)$ PYTHONPATH=$PYTHONPATH:/tmp/kkinstdirtaurus330 easy_install --install-dir=/tmp/kkinstdirtaurus330 dist/taurus-3.3.0.tar.gz
~~~~~~~~~
EDITED: I was wrong. It seemed to work but it did not install the extra_packages
Last edit: Carlos Pascual 2014-07-10
Ticket moved from /p/sardana/tickets/20/
Can't be converted:
I moved this ticket from the sardana list (it was #20 there).
A user (Yngve) gave a very useful hint in the mailing list: use the --egg option of pip (easy_install is not worth worrying about anymore):
So I think we can close this ticket and add this to the docs.
Thanks Yngve!
On Wed 30 September 2015 10:15:46 Yngve Inntjore Levinsen wrote: