2018年8月31日 星期五

Install VS CODE on ubuntu 18.04 LTS

ref: https://qiita.com/shaching/items/69dfc000f13ff55dde99

to summarize:

  1. download *.deb from official site, for me it's "code_1.26.1-1534444688_amd64.deb"
  2. sudo apt install libgconf-2-4
  3. sudo apt --fix-broken install
  4. sudo dpkg -i code_1.26.1-1534444688_amd64.deb

2018年8月22日 星期三

windows 10 自動對時服務設定

參考這篇文章

不知為何預設值是手動

請執行 services.msc 來設定 windows time 為自動啟動,並執行之即可


2018年8月5日 星期日

windows上的無痛(?)caffe安裝

因為之前已經安裝過 tensorflow 了,所以變得很輕鬆,參 https://github.com/BVLC/caffe/tree/windows


  1. 先裝個 cmake (參 https://cmake.org/)
  2. git clone https://github.com/BVLC/caffe.git
  3. cd caffe
  4. git checkout windows
  5. 設定檔 build_win.cmd 中 set WITH_NINJA=0
  6. scripts\build_win.cmd
  7. pip install cmake ninja numpy scipy protobuf==3.1.0 six scikit-image pyyaml pydotplus graphviz
  8. copy the C:\Projects\caffe\python\caffe folder to your site_packages folder.(C:\Users\[你的名字]\AppData\Local\Programs\Python\Python35\Lib\site-packages)

2018年8月4日 星期六

ubuntu 下 edirect 中的 xtract 需手動下載

執行 xtract 時出現以下訊息

Unable to locate xtract executable. Please execute the following:

  ftp-cp ftp.ncbi.nlm.nih.gov /entrez/entrezdirect xtract.Linux.gz
  gunzip -f xtract.Linux.gz
  chmod +x xtract.Linux

這個 ftp-cp 還要先這樣安裝:

sudo apt install ncbi-entrez-direct