tlkh / asitop

Perf monitoring CLI tool for Apple Silicon
https://tlkh.github.io/asitop/
MIT License
3.36k stars 147 forks source link

Problems on installation #29

Closed csancineto closed 2 years ago

csancineto commented 2 years ago

My Mac Monterey 12.4 doesn't have Python 2.XX anymore. So, when I try to install asitop, it doesn't work properly.

Captura de Tela 2022-05-19 às 16 38 31
kikarodaima commented 2 years ago

Add export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.8/bin" to the .bash_profile file in your home dir. From terminal: $ echo -e 'export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.8/bin"' >> $HOME/.bash_profile

csancineto commented 2 years ago

Thanks for your reply.