一、點擊 Run--->Edit Configuration--->選擇要使用命令行參數運行的程序,在 parameters 中輸入命令行參數。
https://blog.csdn.net/weixin_44457930/article/details/120572174
二、將需要用到的環境變量等利用os.environ添加到.py代碼文件中。
即將以下的命令行利用export設置環境變量
export MASTER_ADDR=localhost
export MASTER_PORT=5678
改寫為以下用os.environ設置環境變量
import os
os.environ['MASTER_ADDR'] = 'localhost'
os.environ['MASTER_PORT'] = '5678'
否則會報錯:ValueError: Error initializing torch.distributed using env:// rendezvous: environment variable MASTER_ADDR(或其他) expected, but not set
https://blog.csdn.net/weixin_41529093/article/details/123704238