qingfro9님의 블로그 입니다.

pwntool 설치 로그 본문

개발언어

pwntool 설치 로그

qingfro9 2019. 8. 7. 13:01

pintool 코드 짜면서 문제가 좀 있어서, pwn을 설치하게 되서, 정리했다.

 

$ pip install pwntool
Error가 많이 남..

어떤 블로그 보니, capstone 설치 작업했다고 하길래, Error 메세지 안보고 무작정 설치
$ apt-get install python-capstone


아래 에러가 남
ERROR: Could not build wheels for cryptography which use PEP 517 and cannot be installed directly
$pip install cryptography==2.5


아래 에러가남
ERROR: Cannot uninstall 'capstone'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall

앞서 설치한 캡스톤 때문이군.! 다시 제거
$ apt remove python-capstone 


설치완료
qingfro9@ubuntu:~/Desktop/pin$ python
Python 2.7.12 (default, Nov 12 2018, 14:36:49)
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pwn
[!] Pwntools does not support 32-bit Python.  Use a 64-bit release.

 

누군가에겐..도움이 되길!

Comments