1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

herokuを始めたらherokuコマンドが動かなかった話。

Posted at

Heroku始めました。

herkuちゃんすごうそうだったんです。(情弱)

Qiitaを見て始めたんです。

Heroku Toolbelt入れてGitも入れてpath通してheroku createしたら、

D:\foo>heroku create
'MySQL' は、内部コマンドまたは外部コマンド、
操作可能なプログラムまたはバッチ ファイルとして認識されていません。
'MySQL' は、内部コマンドまたは外部コマンド、
操作可能なプログラムまたはバッチ ファイルとして認識されていません。
 !    Git must be installed to use the Heroku Toolbelt.
 !    See instructions here: http://git-scm.com

D:\foo>

えええええ?

入れたのに(´・ω・`)

Google先生に聞いたところ
https://discussion.heroku.com/t/heroku-installation-error/1149/2

I was currently facing the same problem. I addition to what eugene​489 says A better solution in this case is to escape the ampersand with a caret (^)

So you get something like this:

C:\Program Files (x86)\MySQL\MySQL Fabric 1.5.4 ^& MySQL Utilities 1.5.4 1.5\;

どうやらMySQLのPATHが悪さをしていたみたい。。

C:\Program Files (x86)\MySQL\MySQL Fabric 1.5 & MySQL Utilities 1.5\

となっているところを

C:\Program Files (x86)\MySQL\MySQL Fabric 1.5 ^& MySQL Utilities 1.5\

に変えたあげたら、無事heroku createできました。

頑張ってお勉強します( ・ㅂ・)و ̑̑

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?