- firebase勉強会でnode.js環境が必要だった。
- Windows Subsystem for Linuxで動くUbuntuでやろうとおもった。
- Ubuntu 14だったのでnpmとか古くて悲しみ。
- Windows 10 Creators UpdateしてUbuntu 16にしよう。
- Windowsのアップデート頑張った。
- Ubunbu 14でsudo do-release-update -d ---> 遅い。
- 日本のUbuntuパッケージリポジトリ入れよう。---> yamagata.listとjaist.list
- apt-fastも使おう ---> sudo add-apt-repository ppa:saiarcot895/myppa
- sudo apt-get install apt-fast; sudo apt-fast update; sudo apt-fast upgrade
- sudo do-release-update -d で無事Ubuntu 16.04になった。
- nodejs v6系を使いたい ---> sudo curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -; sudo apt-get install -y nodejs
- sudo npm update -g; sudo npm install -g firebase-tools で幸せになりそうだったけどnodejsが古くて失敗。
- Ubuntuに最新のNode.jsを難なくインストールする http://qiita.com/seibe/items/36cef7df85fe2cefa3ea を参考にして幸せになった。
- n 使うなら、Ubuntuの更新する意味あったのか?
Last active
May 23, 2017 03:13
-
-
Save TakashiSasaki/2787c78711f409c0bb0267b83afb2f71 to your computer and use it in GitHub Desktop.
Ubuntu 16.04で僕が使ってるapt-getのリポジトリ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/apt/sources.list.d/jaist.list | |
deb http://ftp.jaist.ac.jp/pub/Linux/ubuntu/ xenial main restricted universe multiverse | |
deb http://ftp.jaist.ac.jp/pub/Linux/ubuntu/ xenial-updates main restricted universe multiverse | |
deb http://ftp.jaist.ac.jp/pub/Linux/ubuntu/ xenial-backports main restricted universe multiverse | |
deb http://ftp.jaist.ac.jp/pub/Linux/ubuntu/ xenial-security main restricted universe multiverse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/apt/sources.list.d/yamagata.list | |
deb http://ftp.yz.yamagata-u.ac.jp/pub/linux/ubuntu/archives/ xenial main restricted universe multiverse | |
deb http://ftp.yz.yamagata-u.ac.jp/pub/linux/ubuntu/archives/ xenial-updates main restricted universe multiverse | |
deb http://ftp.yz.yamagata-u.ac.jp/pub/linux/ubuntu/archives/ xenial-backports main restricted universe multiverse | |
deb http://ftp.yz.yamagata-u.ac.jp/pub/linux/ubuntu/archives/ xenial-security main restricted universe multiverse |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment