TERM environment variable not set

0

I started doing my program on dev c without and I did not have any errors.

Then I wanted to continue in codeblocks from mac but in the terminal I showed this TERM environment variable not set .. it appeared in each window as a title and as it was giving me problems other than that I thought it was codeblocks.

I decided to program in Xcode although I do not have as much experience but that kept appearing in the terminal. What can it be?

    
asked by Lizbeth Alvarado 17.04.2017 в 09:12
source

1 answer

0

TERM is an environment variable used to configure, at least to my knowledge, a terminal cron .

It is seen that the MAC project tries to create a console in this way and since the variable is not defined in your system you find the error.

Try configuring the project to use that environment variable or register it directly on the system.

You should do something similar to this:

export TERM=xterm
    
answered by 21.04.2017 в 07:03