0

When I start run npm start, there is error like this.


[npm error screen]

enter image description here

[Debug_log]

debug log is like this

enter image description here

[npm version & node version]

enter image description here

This is my node version and npm version.

[path]

This is PATH. enter image description here

[HOST]

This is HOST.

enter image description here


I think it's an environmental variable error.

But I don't know what else to try. Please help me.



[The way in which I tried and failed]

[1.conda install gxx_linux-64(Fail)]

enter image description here



[2.change hostname using hostnamectl: fail]

enter image description here

2021.04.04 edit:
[3.execute source. etc/bash.bashrc](partial success:the reason I don't know)




[edit bash.bashrc: HOST="localhost"]Failed

enter image description here

[excute running server]


excute source .bash.bashrc web server running. But exit bash.bashrc, there is still same error

enter image description here

hyuk
  • 49
  • 4

1 Answers1

0

Found solution but I don't know Why this is work

reference

According to Adriaan's answer

(base) is Anaconda's default environment.

When you connect to the CLI environment, the base starts active.

If (base) is active,

So We're going to turn off automatic activation of this virtual environment.

Running $ conda config --set auto_activate_base false

Then the front part that "(base) is disappeared.

If you open a new terminal and operate the server again, the server will work.

[(base) dissapear & Server is running]


[Running command: $ conda config --set auto_activate_base false]

You can see what appears auto_activate_base: false below the .condarc

enter image description here

enter image description here

hyuk
  • 49
  • 4