dblume commited on 2022-01-27 22:02:54
Showing 1 changed files, with 7 additions and 1 deletions.
... | ... |
@@ -54,11 +54,17 @@ See [config.dlma.com](http://config.dlma.com) for more. |
54 | 54 |
5. .inputrc, for a [partially matched command history traversal](http://askubuntu.com/questions/59846/bash-history-search-partial-up-arrow/59855#59855). |
55 | 55 |
6. .ssh/config, for a [fix for CVE-2016-0777](https://news.ycombinator.com/item?id=10901588). (Or upgrade to OpenSSH 7.1p2 released Jan 14, 2016 from http://www.openssh.com.) |
56 | 56 |
|
57 |
-#### Optional manual step: Install common Python modules |
|
57 |
+#### Optional manual steps for fresh setups |
|
58 |
+ |
|
59 |
+Vim will work without warnings if you install `ctags` and `cscope`. |
|
60 |
+ |
|
61 |
+ sudo apt update |
|
62 |
+ sudo apt install ctags cscope |
|
58 | 63 |
|
59 | 64 |
If you're coming from the far future and want the latest modules, not those |
60 | 65 |
pinned to a version, `pip install` requirements.in instead of requirements.txt. |
61 | 66 |
|
67 |
+ sudo apt install python3-pip |
|
62 | 68 |
python3 -m pip install -r requirements.in |
63 | 69 |
|
64 | 70 |
#### What's not installed |
65 | 71 |