python - How to install a package not supported by condas -
i trying out anaconda on os x , need install python package "nptdms".
i tried
conda install nptdms which gave me error
error: no packages found in current osx-64 channels matching: nptdms can search package on binstar with
binstar search -t conda nptdms
so tried found package auto/nptdms linux-64, assume won't work.
so, after digging, found instructions here
and tried
conda skeleton pypi nptdms conda build nptmds which seemed work (the tests passed.)
but
import nptmds returns
importerror: no module named nptdms
so tried
conda pipbuild nptdms which finished after while error
error: package/name must lowercase, got: u'nptdms'
can point me better set of instruction?
pip install nptdms there's nothing magical python run conda. can have access python packages anywhere, long they're in path. installing package through simplest way (generally pip or easy_install) should work fine.
(also, "import nptmds" not correct; try "from nptdms import tdmsfile")
Comments
Post a Comment