Hi,
On Sun, Feb 8, 2015 at 2:15 PM, Ron Bjork <
grbt...@gmail.com> wrote:
> Thanks for you response. That is what I had planned. But when I attempted to
> install the "virturalenv" app I get the following warning:
>
> $ pip install virtualenv
>
> WARNING: using virtualenv with Anaconda is untested and not recommended.
> We suggest using the conda command to create environments instead.
> For more information about creating conda environments, please see:
>
>
http://docs.continuum.io/conda/examples/create.html
>
> Proceed (y/n)?
>
> To which I reply "n" (no) . I don't want to damage my Anaconda install.
Aha. First - my guess is that the problems arise when using
virtualenvs based on the Anaconda Python - but I'm happy to be
corrected.
It that's true, then you can safely proceed and use the virtualenv
command line I gave, which specifies system Python rather than the
Anaconda Python.
If not, then you can try installing pip into system python instead,
and proceed from there:
curl -O
https://bootstrap.pypa.io/get-pip.py
sudo /usr/bin/python get-pip.py
sudo /usr/local/bin/pip install virtualenv
/usr/local/bin/virtualenv --python=/usr/bin/python for-tornado
. for-tornado/bin/activate
Best,
Matthew