投稿

9月, 2021の投稿を表示しています

【python】scikit-imageライブラリインストールメモ

イメージ
この記事を書いた時点:2021/9/29 pythonバージョン:3.8.8 -------------------------------------------------- python2.7でscikit-imageをインストールしようとすると、もうサポートが切れたからか ERROR: Could not find a version that satisfies the requirement scikit-image (from versions: none) ERROR: No matching distribution found for scikit-image とエラーを吐くので、anacondaをDLしてきてpython3の環境を作った。 anacondaでscikit-imageをインストールしようとしたとき、 $ conda install scikit-image として、いざ $ python $ import skimage をすると python: symbol lookup error: /home/username/anaconda3/lib/python3.8/site-packages/mkl/../../../libmkl_intel_thread.so.1: undefined symbol: omp_get_num_procs などとエラーを吐く。 このページ を参考に $ conda install --channel conda-forge llvm-openmp としたところ解決した。