2016/04/12

[Laravel] 解決使用 tinker 出現 PsySH history file found 的問題

Laravel 的 tinker 指令

php artisan tinker

結果出現錯誤訊息:

PsySH history file found at '/Users/USERNAME/.config/psysh_history'.  
Please delete it or move it to '/Users/USERNAME/.config/psysh/psysh_history'.

解決方法:

1. 可以直接把 ~/.config/psysh_history 刪掉

rm ~/.config/psysh_history

2. 把它移到自己家目錄的 .config/psysh/ 資料夾中

cd ~/.config
mkdir psysh
mv psysh_history ~/config/psysh/

沒有留言: