2
私はRstudioのmarkdownパッケージを使ってウェブサイトを作っています。blogdownでsyui/hugo-theme-archのテーマをインストール
blogdown::install_theme('syui/hugo-theme-arch',theme_example =TRUE)
リターンエラー:
Error in find_config(): Cannot find the configuration file config.yaml or config.toml of the website
私のコードは次のとおりです。私は、関数を実行すると
devtools::install_github('rstudio/blogdown')
blogdown::install_hugo()
blogdown::install_theme('syui/hugo-theme-arch',theme_example =TRUE)
作業ディレクトリをサイトのディレクトリに設定しましたか? 'find_config()'がそういう文句を言うと、テーマではなくあなたの*サイトの設定ファイルを見つけることができない可能性があります。たとえば、あなたがサイトのwdにいない場合に、blogdown関数を実行しようとすると、このエラーが発生します。 – RobertMc