python - How to install OpenCV3 in Anaconda3 offline? -


i tried install opencv python-3.5 in anaconda using following command

conda install -c https://conda.binstar.org/menpo opencv3 

this taking long time download file. seems download accelerator better @ doing this. file location at

https://anaconda.org/menpo/opencv3/3.1.0/download/osx-64/opencv3-3.1.0-py35_0.tar.bz2

is there way same installation offline given opencv3-3.1.0-py35_0.tar.bz2 file?

if want install package file directly do

conda install path_to_file/opencv3-3.1.0-py35_0.tar.bz2 

where, of course, path_to_file file path file. note warning in conda install here:

conda can called list of explicit conda package filenames (e.g. ./lxml-3.2.0-py27_0.tar.bz2). using conda in mode implies --force option, , should likewise used great caution. explicit filenames , package specifications cannot mixed in single command.

you can use --offline argument make sure don't connect internet.


Comments