I am running some Python scripts in Google\'s Colaboratory platform. Now, I need to set some environment variables of the system. Like the following shows:
!
I normally set the PATH with os.environ, like this:
PATH
os.environ
import os os.environ['PATH'] += ":/usr/local/go/bin"