Closed chenchenzi closed 10 months ago
Hugo 0.69.0 doesn't have an ARM64 version:
blogdown::hugo_installers('0.69.0')
version | os | arch | extended | |
---|---|---|---|---|
hugo_0.69.0_DragonFlyBSD-64bit.tar.gz | 0.69.0 | DragonFlyBSD | 64bit | FALSE |
hugo_0.69.0_FreeBSD-32bit.tar.gz | 0.69.0 | FreeBSD | 32bit | FALSE |
hugo_0.69.0_FreeBSD-64bit.tar.gz | 0.69.0 | FreeBSD | 64bit | FALSE |
hugo_0.69.0_FreeBSD-ARM.tar.gz | 0.69.0 | FreeBSD | ARM | FALSE |
hugo_0.69.0_Linux-32bit.tar.gz | 0.69.0 | Linux | 32bit | FALSE |
hugo_0.69.0_Linux-64bit.tar.gz | 0.69.0 | Linux | 64bit | FALSE |
hugo_0.69.0_Linux-ARM.tar.gz | 0.69.0 | Linux | ARM | FALSE |
hugo_0.69.0_Linux-ARM64.tar.gz | 0.69.0 | Linux | ARM64 | FALSE |
hugo_0.69.0_macOS-32bit.tar.gz | 0.69.0 | macOS | 32bit | FALSE |
hugo_0.69.0_macOS-64bit.tar.gz | 0.69.0 | macOS | 64bit | FALSE |
hugo_0.69.0_NetBSD-32bit.tar.gz | 0.69.0 | NetBSD | 32bit | FALSE |
hugo_0.69.0_NetBSD-64bit.tar.gz | 0.69.0 | NetBSD | 64bit | FALSE |
hugo_0.69.0_NetBSD-ARM.tar.gz | 0.69.0 | NetBSD | ARM | FALSE |
hugo_0.69.0_OpenBSD-32bit.tar.gz | 0.69.0 | OpenBSD | 32bit | FALSE |
hugo_0.69.0_OpenBSD-64bit.tar.gz | 0.69.0 | OpenBSD | 64bit | FALSE |
hugo_0.69.0_OpenBSD-ARM.tar.gz | 0.69.0 | OpenBSD | ARM | FALSE |
hugo_0.69.0_Windows-32bit.zip | 0.69.0 | Windows | 32bit | FALSE |
hugo_0.69.0_Windows-64bit.zip | 0.69.0 | Windows | 64bit | FALSE |
hugo_extended_0.69.0_Linux-64bit.tar.gz | 0.69.0 | Linux | 64bit | TRUE |
hugo_extended_0.69.0_macOS-64bit.tar.gz | 0.69.0 | macOS | 64bit | TRUE |
hugo_extended_0.69.0_Windows-64bit.zip | 0.69.0 | Windows | 64bit | TRUE |
If you want to continue to use 0.69.0, you can try the 64bit version:
blogdown::install_hugo('0.69.0', arch = '64bit')
If you want to use a newer version, you can install it with blogdown::install_hugo()
. Then search for 0.69.0
in your website project (e.g., Cmd + Shift + F
in RStudio) and replace with the new version. Restart R and serve the site. It seems you are using the Hugo Academic theme. If that's true, you might have trouble if you use a newer version of Hugo for your old website. You can try, though. If 0.69.0 worked fine in the past, it's probably a good idea to stick to it.
Thank you @yihui for your quick reply. Yes I am using Hugo Academic theme, and it seeems that the newer version of Hugo (0.121.1) doesn't work. Followed your advice, I installed hugo '0.69.0' with '64bit', and now serve_site() works! Thank you very much!
Same scenario in that I switched to a new laptop. Just had to add the arch = 64bit
and everything worked fine.
Hi,
I built a wesbite a couple years ago and it was with hugo version 0.69.0, Netlify, R, and Rstudio. Now that I switched to a new working laptop (Mac M2) and the Hugo I installed is now 0.121.1 (R version: 4.3.2; blogdown version: 1.18). I am wondering how to build or configure my website using the upgraded hugo? Or should I reinstall the much older Hugo?
Also when I tried to install hugh 0.69.0 via blogdown, I got another error message:
When I attempted to edit the Hugo version in
.Rprofile
andnetlify.toml
to match the Hugo I installed (0.121.1), I got the following error message when I didblogdown::serve_site()
:Could anyone please help with this? Thank you very much!
Checklist
When filing a bug report, please check the boxes below to confirm that you have provided us with the information we need. Have you:
[X] formatted your issue so it is easier for us to read?
[X] used
blogdown::check_site()
function to diagnose your site and corrected potential problems?[ ] included a minimal, self-contained, and reproducible example?
[X] pasted the output from
xfun::session_info('blogdown')
in your issue?[X] upgraded all your packages to their latest versions (including your versions of R, the RStudio IDE, and relevant R packages)?
[ ] installed and tested your bug with the development version of the blogdown package using
remotes::install_github('rstudio/blogdown')
?