[paramiko import 시 AttributeError: 'module' object has no attribute 'SSHClient' 에러 발생 시]
>>> import paramiko
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/root/paramiko.py", line 7, in <module>
AttributeError: 'module' object has no attribute 'SSHClient'
>>>
-> 해당 폴더 내 paramiko.pyc 파일 삭제 하면 정상
Type "help", "copyright", "credits" or "license" for more information.
>>> import paramiko
>>>
pakramiko 예제
#!/bin/env python
#coding=UTF-8
import paramiko
client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
host="<IP>"
port_num = 22
user = "<ID>"
pw = "<PW>"
client.connect(hostname=host, port=port_num, username=user, password=pw)
print client
client.close()
'Python' 카테고리의 다른 글
[python] python 에서 명령어 매개변수 가져오기 sys.argv (0) | 2018.07.07 |
---|---|
[python] 파이썬에서 time, strftime 함수를 사용하여 날짜와 시간 포맷에 맞춰 가져오기 (0) | 2018.07.07 |
[python] 텔레그램과 python 을 활용하여 서버 모니터링 및 제어하기 (0) | 2016.12.27 |
[python] mysql 쿼리 실행 시 UnicodeEncodeError 발생할 경우 (0) | 2016.12.25 |
python 으로 XE mysql 쿼리로 자동 게시물 등록하기 (1) | 2016.12.25 |