我已经安装了window rails安装程序,当我执行此命令时
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
我正在
ERROR: While executing gem ... (Gem::CommandLineError)
Unknown command tzinfo-data,
不确定我错过了什么。
答案 0 :(得分:1)
您发布的行不是命令,不打算在命令行上运行。而是将该行添加到应用程序根目录中的Gemfile
并运行:
bundle install
在命令行上安装该gem以及Gemfile
中提到的所有其他gem。
答案 1 :(得分:1)
你做错了。您应该将其添加到Gemfile
# Gemfile
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
并将其与bundle install
或通过命令行
运行gem install 'tzinfo-data' --platform=mingw --platform=mswin --platform=x64_mingw