程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

使用命令行參數運行的 Python 程序如何在 pycharm 中調試

編輯:Python

一、點擊 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


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved