markdown 继承我所做的一切,以便在macOS上进行exabgp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 继承我所做的一切,以便在macOS上进行exabgp相关的知识,希望对你有一定的参考价值。

# Heres everything I did to get exabgp going on macOS

1. made a fresh virtualenv with python3 `virtualenv -p /usr/local/bin/python3.6 ~/exa3`
2. activate that virtualenv `source ~/exa3/bin/activate`
3. moved over to my git directory `cd ~/git`
3. `git clone` the repo since its not setup to do `pip install -e exabgp` properly
4. `cd exabgp` to go into the repo
5. `pip install -e .` to install in editable mode (this was in a fresh py3 venv)
6. added the `exabgp.conf` and `exabgp.env` files to `etc/exabgp/`
7. made the fifo files and put them in the git root's `run/` directory

```
# I know you can do these together with {in,out} but 
# mac was finicky so I did each step individually
mkfifo run/exabgp.in 
mkfifo run/exabgp.out
chmod 600 run/exabgp.out
chmod 600 run/exabgp.in
chown 503:20 run/exabgp.out
chown 503:20 run/exabgp.in
```

8. invoked `exabgp` to get things running with:

```
exabgp -d -e /Users/cody/git/exabgp/etc/exabgp/exabgp.env --root /Users/cody/git/exabgp/ /Users/cody/git/exabgp/etc/exabgp/exabgp.conf
```

以上是关于markdown 继承我所做的一切,以便在macOS上进行exabgp的主要内容,如果未能解决你的问题,请参考以下文章

视图被合并而不是单独显示

当我所做的只是一个列表时,为啥 Hibernate 会删除我的集合条目?

打开保存的文件,其中包含对富文本所做的更改

如何移动我的 GitHub 分支,然后在当前的 master 上工作?

markdown Git - 我所知道的一切都非常有用

Numpy 操作对 groupby 无效。改用 .groupby(...).mean() ,这就是我所做的