質問編集履歴

1

ソースからのインストールでの問題点、ここさえクリアできれば“ソースからインストールするしか”との質問にはならないので追記しました

2018/06/15 05:14

投稿

taro373
taro373

スコア189

test CHANGED
File without changes
test CHANGED
@@ -17,3 +17,49 @@
17
17
  異なっています。すべてを最新にすることも考えましたが、パッケージが
18
18
 
19
19
  動かなくなる可能性もあるようで、悩んでいます。
20
+
21
+
22
+
23
+
24
+
25
+ makeもしてみて、動くところまでできましたが、configureで
26
+
27
+ 下記のエラーがでました。
28
+
29
+
30
+
31
+ ```
32
+
33
+ configure: WARNING: neither inconsolata.sty nor zi4.sty found: PDF vignettes and package manuals will not be rendered optimally
34
+
35
+ ```
36
+
37
+
38
+
39
+ どちらもありますが見つけてくれないようです。
40
+
41
+ これをクリアできれば、それぞれ同じバージョンをソースからインストールすれば
42
+
43
+ よいかと考えました。複数のバージョンを使えるようにしたいのではなく、どのマシンでも同じバージョンのRを使うにはどうすればよいものでしょうか。
44
+
45
+
46
+
47
+
48
+
49
+ ```
50
+
51
+ $ sudo find / -name zi4.sty
52
+
53
+ /usr/local/texlive/2018/texmf-dist/tex/latex/inconsolata/zi4.sty
54
+
55
+ $ sudo find / -name inconsolata.sty
56
+
57
+ /usr/local/texlive/2018/texmf-dist/tex/latex/inconsolata/inconsolata.
58
+
59
+
60
+
61
+ $ sudo yum -y install texlive texlive-*.noarch
62
+
63
+ インストール済みか最新バージョンです
64
+
65
+ ```