- Open a shell and type
git --version
. If this works, go to2.
. Else your shell will prompt you to install command line tools. Just accept and wait for those to install. If nothing happens, try and runxcode-select --install
instead. - If you don't have homebrew, install it using this documentation.
- Run
brew update
thenbrew install readline xz
. - Install pyenv using this documentation. Don't forget to heed pyenv advices by the end of the installation and to add the relevant lines to your
.bashrc
or.profile
file. - Install python v3.6.10 using pyenv (or any newer version you may like):
pyenv install 3.6.10
. - Create a virtualenv for your minet endeavors:
pyenv virtualenv 3.6.10 minet
. - Activate it
pyenv activate minet
. - Install
minet
using pip:pip install minet
. - Finally, test that everything went smoothly by testing
minet --version
.