markdown 备忘录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 备忘录相关的知识,希望对你有一定的参考价值。

## install Apps
- Chrome
- Google日本語入力
- Clipy
- iTerm2
- Atom
  - UI, Syntax Theme: `Atom Material`
  - `sublime-style-column-selection`
- Exploratory
- [source-han-code-jp](https://github.com/adobe-fonts/source-han-code-jp/releases)

## @iTerm2
### Homebrew
```bash
$ xcode-select --install
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew doctor
```

### Python
```bash
$ sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /
$ brew install pyenv
$ vim ~/.bash_profile
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
$ source ~/.bash_profile
$ pyenv install --list
$ pyenv install 0.0.0
$ pyenv global 0.0.0
$ pyenv rehash
$ pyenv versions
$ sudo easy_install pip
$ pip install -U pip
```

### Jupyter
```bash
$ pip install jupyter
$ pip install jupyter_contrib_nbextensions
$ jupyter contrib nbextension install --user
$ jupyter nbextension enable codefolding/main
```

### R
[install pkg from cran](https://cran.r-project.org/bin/macosx/)

```bash
$ r
> install.packages(c('repr', 'IRdisplay', 'evaluate', 'crayon', 'pbdZMQ', 'devtools', 'uuid', 'digest'))
> install.packages('IRkernel')
> IRkernel::installspec()
> q()
```

[RStudio](https://www.rstudio.com/products/rstudio/download/)

### Python Packages
```bash
$ pip install -r requirements.txt
$ pip install pip-review
$ pip-review --auto
```

以上是关于markdown 备忘录的主要内容,如果未能解决你的问题,请参考以下文章

markdown awssummit2018备忘录

markdown Objective-C备忘录

markdown Numpy备忘录

markdown Edx备忘录

MarkDown语法备忘

markdown WP-CLI备忘录