Skip to content

Commit 3348d14

Browse files
committed
Hot fix of dependency
1 parent 25cd79b commit 3348d14

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

RFEM/dependencies.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
import mock
1616
import suds.transport
1717
import suds.client # suds-py3
18-
import psutil
1918

2019
except:
2120
print('One of the required modules is not installed in your Python env.')
@@ -28,11 +27,11 @@
2827
import subprocess
2928
try:
3029
subprocess.call('python -m pip install --upgrade pip')
31-
subprocess.call('python -m pip install psutil requests six suds-py3 xmltodict pytest mock --user')
30+
subprocess.call('python -m pip install requests six suds-py3 xmltodict pytest mock --user')
3231
os.execv(sys.executable, ['python'] + sys.argv)
3332
except:
3433
print('WARNING: Installation of modules failed!')
35-
print('Please use command "python -m pip install psutil requests six suds-py3 xmltodict pytest mock --user" in your Command Prompt.')
34+
print('Please use command "python -m pip install requests six suds-py3 xmltodict pytest mock --user" in your Command Prompt.')
3635
input('Press Enter to exit...')
3736
sys.exit()
3837
else:

0 commit comments

Comments
 (0)