notes_env_config.rst 333 B

12345678910111213141516171819202122
  1. 环境变量配置
  2. ===============
  3. .. post:: Jan 25, 2021
  4. :tags: configure
  5. :category: notes
  6. Golang环境变量
  7. ---------------
  8. .. code-block:: shell
  9. # uncompress tarball
  10. $tar xzf go-x.tar.gz
  11. # add path to environment
  12. $sudo vi /etc/profile
  13. export PATH=$PATH:/location/to/golang
  14. # test it
  15. $go version