Semi-automatic classification plugin installation
From AWF-Wiki
(Difference between revisions)
(Created page with " Category:Installation Guide") |
(→installation guide for MacOS) |
||
(One intermediate revision by one user not shown) | |||
Line 1: | Line 1: | ||
+ | =Installation guide for MacOS [[file:apple_logo.png|30px]]= | ||
+ | *before you run the plugin in qgis you need to install some python packages | ||
+ | *open a terminal and install numpy and matplotlib | ||
+ | <pre> pip3 install matplotlib </pre> | ||
+ | <pre> pip3 install numpy </pre> | ||
+ | <pre> pip3 install scipy </pre> | ||
+ | *if this does not work you have to update pip | ||
+ | <pre> python3 -m pip install --upgrade pip </pre> | ||
+ | |||
+ | *if this still does not work you have to install Homebrew | ||
+ | |||
+ | <pre> /usr/bin/ruby -e "$(curl –fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"</pre> | ||
+ | *than you can use this to install numpy, matplotlip and scipy | ||
+ | <pre> brew install numpy --with-python3 </pre> | ||
+ | <pre> brew install matplotlib --with-python3 </pre> | ||
+ | <pre> brew install scipy –with-python3 </pre> | ||
+ | |||
Latest revision as of 14:42, 23 April 2020
[edit] Installation guide for MacOS
- before you run the plugin in qgis you need to install some python packages
- open a terminal and install numpy and matplotlib
pip3 install matplotlib
pip3 install numpy
pip3 install scipy
- if this does not work you have to update pip
python3 -m pip install --upgrade pip
- if this still does not work you have to install Homebrew
/usr/bin/ruby -e "$(curl –fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- than you can use this to install numpy, matplotlip and scipy
brew install numpy --with-python3
brew install matplotlib --with-python3
brew install scipy –with-python3