from App store
ソフトウェア | 備考 |
---|---|
Commander One | |
Slack | |
Xcode | command line toolsのインストールだけでもOKっぽい |
Tag Editor Free | |
ForkLift | Dark modeなしファイルマネージャ |
from installer
ソフトウェア | 備考 |
---|---|
Dropbox | |
Office 365 | |
Skype | |
Sublime Text 3 | text editor |
Typora | markdown editor |
Gimp | |
Mendeley | |
Meshlab | |
Meld for Mac | |
Android File Transfer | |
DB Browser for SQLite | sqlite database viewer/editor |
with Homebrew
ソフトウェア | コマンド | 備考 |
---|---|---|
Marta | * brew cask install marta * | 圧縮はzipのみ |
docx2txt | brew install docx2txt | |
programming
Python
Anacondaのインストール後にbash_profileにパス設定のコマンドが追記されるが,なぜか反映されなかった. よくわからないので,とりあえずbashrcに以下のパスを追加した.
export PATH=/Users/oyamada/opt/anaconda3/bin:$PATH
# OpenCV with contrib pip install opencv-contrib-python # PyWavelets conda install pywavelets # GPy pip install gpy # George](http://dfm.io/george/current/) brew install eigen3 pip install george # PyTorch conda install pytorch torchvision -c pytorch
C++
- install command line tools from here
- install homebrew following this info
- install package manager vcpkg (see here)
# install gcc and g++ brew install gcc # install cmake and cmake-gui by brew cask install cmake # switch default compiler from clang to gcc # check the return value, alias, of the following commands # ls /usr/local/bin | grep gcc # ls /usr/local/bin | grep g++ # make a symbolic link to the found alias ln -s /usr/local/bin/gcc-9 /usr/local/bin/gcc ln -s /usr/local/bin/g++-9 /usr/local/bin/g++ # add /usr/local/bin to the path export PATH=$PATH:/usr/local/bin
install CLion
LaTeX
TeXの環境1式はMacTeXを使ってインストール. texlive全部と関連するアプリケーションをまとめてインストールしてくれる優れものらしい.
sudo tlmgr update --self --all