Froth on the Daydream

Technology, Music and so on

ギター(また)始めました

実は、今年の初めに長い間ケースに入れっぱなしでほったらかしになっていた楽器類を出してきて、毎晩練習している。

娘がピアノを始めたのがきっかけ。

 

最初は、一緒にピアノを練習しようと思ったんやけど、実際やってみると指が動かなすぎてフラストレーションが半端無い。。。

早々にあきらめてしまった。。なまじギターなら弾けるというのが良くない。。

 

しかーし、「子供は親のしぐさから学ぶ」と基本的には思っているのであきらめるわけにはいかん。

山本五十六の「やってみせ、言って聞かせて、 させてみせ、 ほめてやらねば、人は動かじ。 話し合い、耳を傾け、承認し、 任せてやらねば、人は育たず。 やっている、姿を感謝で見守って、 信頼せねば、人は実らず。」とか好きです)

 

ということで、ピアノはあきらめたけどギターを練習することにしました。

 

学生時代はバンドもやっていて、社会人になってからも友人の結婚式とかで弾いたりしてたんやけど、結婚して子供が生まれてからはぜんぜんやってないのですよね。。

リビングに楽器だしとくと危ないって理由でケースにしまったら、そのまま触らなくなってしまいました。。(良くあるパターン)

 

しかし、久しぶりにやってみるといろいろと便利になっていて隔世の感がありますなぁ。。

1. 各種ツール類がデジタル化されている(そして無料)

昔は初心者セットとかで、いちいちそろえてたツール類がアプリになってる。。無料のもあるし。。

チューナーとかメトロノームとかエフェクターとかアンプまで。。。

 

 すごい時代だ。

 

 

とはいいつつも大体持ってるので、普段使いしてるのはメトロノームくらい。アンプとかは旅行のときとかは便利だね。。

 

 

ちなみに私は↓を使ってます。無料じゃないです。すみません。

Tempo - Metronome メトロノーム

Tempo - Metronome メトロノーム

  • Frozen Ape Pte. Ltd.
  • ミュージック
  • ¥360

 

2. ネット上にありとあらゆるトレーニング動画がある

無料のものも、そうじゃないものも。

 

ちゃんとやるには習ったほうが良いんだろうけど、役に立つビデオやサイトがいっぱいある。演奏だけでなく、メンテナンスとかも。 

 

教則本だけでやるのとは、効率がぜんぜん違うと思う。

 

 

3. 楽器のネット通販がすごい

もともとアマゾンは良く使うほうですが、ネットの楽器専門店がすごかった。

品揃え豊富だし、安い。。。

 

ピックとか弦とか、リアル店舗で買う気がおきん。。

 

ちなみに、私はサウンドハウスさんにお世話になってます。

 

 

 

 

以上。

今の若い子らはいいなぁ。

Begin the guitar again

Actually, at the beginning of this year, I pulled out the guitar that had been left in the case for many years and I've been practiceing from then on.

The chance was that my daughter began playing the piano.

 

 

At first I was trying to practice the piano together, but when I tried it I felt frustrated with so much difficulty and gave up quickly. . .

The stress was so huge because I can play guitar little...

 

BUT , my motto in mentoring my children is "Child learn from Parents behavier". So, I'm practicing the guitar although the instrument is not same.

 

I had been playing in the band when I was a student and also played in my friend's wedding party after I got a job. But, after I had a child, I put away in the case because it was dangerous I leave it in the living room.  and ... I forgot... Common things.

 

But I'm amazed the current situation because it has been changed from 10 years ago. And I'd like to write them.
 

1. Tools has been digitized (and free)

In the old days, the tools that I bought with a good deal of money were digitized(app for iOS) and became free...

For example, tuner, metronome, effector, amp...

 

 

It's a great era...

 

I do not normally use applications other than the metronome, but it is convenient when traveling.

 

FYI, I use this. But I's not free.

Tempo - Metronome メトロノーム

Tempo - Metronome メトロノーム

  • Frozen Ape Pte. Ltd.
  • ミュージック
  • ¥360

 

2. There are lots of training videos on the net

Free or NOT Free

 

In order to do it properly, it is better to learn it, but there are lots of videos and sites to be helpful.

 

It is far more efficient than practicing with instructional books alone.

 

3. Online shopping is awesome

I used Amazon well, but online shops exclusively for musical instruments are amazing. .

Good product selection and reasonable price!

 

I don't want to buy plectrums or strings in a real shop any more...

 

FYI, I always use "Sound house", thanks.

 

 

 

Now, the children are blessed...

Install pip to Amazon Linux

Install pip (Package manager of Python) to Amazon Linux

 

$ sudo easy_install pip
Searching for pip
Best match: pip 6.1.1
Adding pip 6.1.1 to easy-install.pth file
Installing pip script to /usr/local/bin
Installing pip2.7 script to /usr/local/bin
Installing pip2 script to /usr/local/bin

Using /usr/lib/python2.7/dist-packages
Processing dependencies for pip
Finished processing dependencies for pip

 

No sweat!

Install Python 3 to Amazon Linux

I installed Python 3 to Amazon Linux because default version was 2.7.12 on Amazon Linux.(Sep 2017)

 

Try apt-get

$ sudo apt-get install python3

sudo: apt-get: command not found

Oops.. 

https://forums.aws.amazon.com/thread.jspa?threadID=72398

 

Install the tool "pyenv"

It seems I can manage versions by this tool.

 

$ sudo yum install gcc gcc-c++ make git openssl-devel bzip2-devel zlib-devel readline-devel sqlite-devel

$ sudo git clone https://github.com/yyuu/pyenv.git /usr/bin/.pyenv
$ cd /usr/bin/.pyenv
$ sudo mkdir shims
$ sudo mkdir versions

$ sudo chown -R ec2-user .pyenv

 

Add below on "~/.bashrc".

export PYENV_ROOT="/usr/bin/.pyenv"
if [ -d "${PYENV_ROOT}" ]; then
export PATH=${PYENV_ROOT}/bin:$PATH
eval "$(pyenv init -)"
fi

 

$ source ~/.bashrc

 

Install Python3

List version options I can install.

$ pyenv install --list

 

Install

$ pyenv install 3.6.2

 

Change version

$ pyenv global 3.6.2
$ python -V
Python 2.7.12

 

... uh-oh??

What's wrong??

 

I tried again by reference to below web page.

pyenvのインストール、使い方、pythonのバージョン切り替えできない時の対処法 - Qiita

 

$ which python
/usr/bin/.pyenv/shims/python

Not wrong...

 

I challenged again by reference to below web page.

pythonのバージョンが切り替わらない - Qiita

 

add below on "~/.bash_profile"

export PATH="$HOME/.pyenv/shims:$PATH"

 

$ source ~/.bash_profile
$ pyenv global 3.6.2
$ python --version
Python 3.6.2

 

Gotcha!!