1. 程式人生 > >登入伺服器老是出現-bash: export: `=': not a valid identifier

登入伺服器老是出現-bash: export: `=': not a valid identifier

登入伺服器老是出現-bash: export: `=’: not a valid identifier
今天把問題解決了,其實也不算什麼大問題,但是看著彆扭,在網上搜了好多都說是把/etc/profile 檔案下的export的變數等號兩邊的空格去掉,我的這個檔案本身就沒有空格,後來找到了.bashrc檔案,把裡面空格去掉就OK了(果然是空格問題)

[[email protected] ~]# vim .bashrc
  1 # .bashrc
  2
  3 # User specific aliases and functions
  4
  5 alias rm='rm -i'
  6 alias cp='cp -i'
  7 alias mv='mv -i'
  8
  9 export PIP_REQUIRE_VIRTUALENV=true  把等號兩邊的空格去掉
 10 # Source global definitions
 11 if [ -f /etc/bashrc ]; then
 12     . /etc/bashrc
 13 fi