WEB/Twisted 파이썬 비동기 통신 라이브러리

리눅스에서 트위스티드와 관련 패키지를 포함한 python-twisted 패키지를 유지(maintain)

ITGenerations 2018. 9. 17. 17:00

리눅스에서 트위스티드와 관련 패키지를 포함한 python-twisted 패키지를 유지(maintain)하고 있다.




[설치구문]

$sudo apt-get install python-twisted -y


[에러발생]

E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)

E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?


[에러해결]


다만, 위 해결책을 따라할 때 구문마다 앞에 sudo를 붙이자.

그래야 잘 된다.



[설치구문]

$sudo apt-get yum install python-twisted


[에러발생]

Command 'yum' not found, but can be installed with:


sudo apt install yum


yum 이 없어서 생기는 에러


[에러해결]

해결책

$sudo apt-get install yum -y 


[에러발생]

There are no enabled repos.

 Run "yum repolist all" to see the repos you have.

 You can enable repos with yum-config-manager --enable <repo>


[에러해결]

--진행중--