1
0

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 3 years have passed since last update.

【Ruby on Rails】SNS認証時に起こった「-bash: export: `=': not a valid identifier」のエラー解決をした話

Posted at

#対象者

  • 環境変数を設定している方
  • SNS認証を実装している方
     

#状況

SNS認証実装中、
環境変数設定時に下記のようなエラーが

ターミナル

-bash: export: `=': not a valid identifier

#解決方法

環境変数設定時に

export 環境変数="変数名" ○
export 環境変数 = "変数名" ✕

上記のように環境変数と変数名の間に半角スペースを開けるとエラーになってしまいます。

スペースを無くしたらエラーもなくなりました!

####投稿者コメント
初めて見たエラーだったので記事にしてみました。
学習内容だけでなく、自分が遭遇したエラーに関しても発信していきたいです。

####My Profile
プログラミング学習歴3ヶ月目のアカウントです!
プログラミングスクールで学んだ内容や自分が躓いた箇所等のアウトプットの為に発信しています。
また、プログラミング初学者の方にわかりやすく、簡潔にまとめて情報共有できればと考えています。
もし、投稿した記事の中に誤り等ございましたら、コメント欄でご教授いただけると幸いです。 

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?