我在用WSL2。在R,我试着安装软件包。例如:
> install.packages("tidyverse")但是我得到了一个Failed to create bus connection错误。
回溯:
Failed to create bus connection: No such file or directory
Warning in system("timedatectl", intern = TRUE) :
running command 'timedatectl' had status 1
** help
*** installing help indices
*** copying figures
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
Failed to create bus connection: No such file or directory
Warning in system("timedatectl", intern = TRUE) :
running command 'timedatectl' had status 1
** testing if installed package can be loaded from final location
Failed to create bus connection: No such file or directory
Warning in system("timedatectl", intern = TRUE) :
running command 'timedatectl' had status 1
** testing if installed package keeps a record of temporary installation path
* DONE (tidyverse)
The downloaded source packages are in
‘/tmp/RtmpD1g9KP/downloaded_packages’我试图安装dbus包:
sudo apt-get update
sudo apt-get install dbus并且在重新启动后仍然会收到错误。
我也试过:
sudo systemctl status但它会返回:
System has not been booted with systemd as init system (PID 1). Can't operate.发布于 2022-07-08 20:25:15
在.bashrc或其他别名文件中,为TZ添加一个变量。对我来说,我做到了
export TZ="America/New_York"然后重新加载bash,它应该识别时区。您可以在这里看到更多关于时区名称的信息:https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
https://stackoverflow.com/questions/71817480
复制相似问题