setup.py - Install python packages to correct anaconda environment -
i've setup anaconda , created python 3.3 environment. wanted install package (dataset). install instructions ask clone git repo , run
python setup.py install but packages not installed environments site-packages folder different anaconda location.
what normal steps solve problem? newbie-compatible solutions preferred. os macosx, case, relevant.
it looks conda automatically adds pip conda environment, after source conda environment, i.e.:
source activate ~/anaconda/envs/dataset you should able install this:
git clone git://github.com/pudo/dataset.git pip install ./dataset edit
here exact steps took:
$ conda create -p ~/anaconda/envs/py33 python=3.3 anaconda pip $ source activate ~/anaconda/envs/py33 $ pip ~/anaconda/envs/py33/bin/pip $ pip install ./dataset/
Comments
Post a Comment