リモートで働くプログラマーの検索結果

リモ太がググったことの覚書

homebrew

homebrewでpostgresqlをインストールする

brew install postgresql brew services start postgresql

MacbookにHomebrewをインストールする

brew.sh 公式サイトの手順通りに作業する ターミナルで以下のコマンドを叩く /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" 最初にパスワードの入力を求めらた上に実行するか一度確認があるのでエン…

homebrewでmysqlをインストールする

brew install mysql すでにinstallしてたら以下のように表示される Error: mysql 8.0.19 is already installed To upgrade to 8.0.19_1, run `brew upgrade mysql`. 以下のコマンドでインストールされているmysqlの内容を表示 brew info mysql 以下のコマン…

npm install したら 「ERROR:root:code for hash md5 was not found.」と表示される

brewでpythonをinstallし直したらいいらしいんだけど 2系のpythonをuninstallしようとしたらbrewのリポジトリがないと言われ以下のようにしてinstallした brew install python@2 これだと No available formula with the name "python@2" こうなる brew inst…

homebrewで入れたpostgresqlをupgradeしたら動かなくなった

psqlを実行すると以下の様なメッセージが表示される The data directory was initialized by PostgreSQL version 11, which is not compatible with this version 12.2. 書いてあるとおり11で作られたデータだから12では動かないと 以下を実行してデータコン…

brew update したら「fatal: could not read Username for 'https://github.com': terminal prompts disabled」というエラーが出る

brew update fatal: could not read Username for 'https://github.com': terminal prompts disabled Error: homebrew/homebrew-versions does not exist! Run `brew untap homebrew/homebrew-versions` to remove it. 書いてあるとおり brew untap homebrew…