Hi,
On Sun, Nov 11, 2012 at 2:27 AM, Tirza Doniger <
tirza....@gmail.com> wrote:
> I have downloaded the latest version of cython. After I install it - it
> gives me a different version number.
> Cython-0.17.1.tar.gz
>
> [bioinfo] tirza 600 : pwd
> /private/software/packages/Cython-0.17.1/bin
> [bioinfo] tirza 599 : cython -V
> Cython version 0.15.1
>
> Is it supposed to be like this? I am installing other software that is
> looking for cython version +0.16, and it still won't install.
Is it possible you actually want
./cython -V
or:
/private/software/packages/Cython-0.17.1/bin/cython -V
or
export PATH=/private/software/packages/Cython-0.17.1/bin:$PATH
cython -V
? You might also need to make sure that the new Cython is appearing
before any system Cython in Python's path.
Best,
Matthew