Changes between Version 10 and Version 11 of Software/eTutorialSupport
- Timestamp:
- Jun 27, 2016, 1:40:26 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Software/eTutorialSupport
v10 v11 216 216 === Installing/configuring packages on Ubuntu === 217 217 218 These instructions are for installing the dashboard locally as an unprivileged user, not system-wide. 219 220 First, install RVM and prepare to use it: 221 222 {{{ 223 command curl -sSL https://rvm.io/mpapis.asc | gpg --import - 224 curl -L https://get.rvm.io | bash -s stable 225 source ~/.rvm/scripts/rvm 226 }}} 227 228 Install ruby 1.9.2 with RVM: 229 230 {{{ 231 rvm install ruby-1.9.2 218 Install a JavaScript runtim: 219 220 {{{ 221 sudo apt-get install nodejs 232 222 }}} 233 223 234 224 Get the [https://github.com/Shopify/dashing dashing] gem: 235 225 {{{ 236 rvm use 1.9.2237 226 gem install dashing 238 gem install sqlite3227 gem install bundler 239 228 gem install execjs --version 1.4.0 # see https://github.com/Shopify/dashing/issues/195 240 229 gem uninstall execjs --version 2.0.2 241 230 }}} 242 231 243 In {{{~/.rvm/gems/ruby-1.9.2-p330/specifications/dashing-1.3.6.gemspec}}} (or equivalent), change the version for the "execjs" dependency to 1.4.0. 232 In the dashing gemspec (wherever it is located), you may have to change the version for the "execjs" dependency to 1.4.0. 233 234 Get the source code for the dashboard. {{{cd}}} to that directory, then run 235 236 {{{ 237 bundle 238 dashing start 239 }}} 244 240 245 241