문제

스폰이 의존하는 Eventlet은 자체를 설치하는 방식으로 인해 VirtualEnV에 설치할 수 없습니다. 다음 오류 (가독성을 위해 래핑)는 다음을 보여줍니다.

Running eventlet-0.9.4/setup.py -q bdist_egg --dist-dir \
  /tmp/easy_install-m_s75o/eventlet-0.9.4/egg-dist-tmp-fAZK_u
error: SandboxViolation: chmod('/home/myuser/.python-eggs/\
  greenlet-0.2-py2.6-linux-i686.egg-tmp/tmpgxa_uc.$extract', 493) {}

모든 인식을 넘어 파이썬 경로를 패치하지 않고 전 세계적으로 산란을 설치하지 않고 (어쨌든 VirtualEnv를 가질 수있는 요점을 깨뜨릴 것입니다) 어떻게 설치/실행합니까?

도움이 되었습니까?

해결책

다음 5 개의 명령은 아무런 문제없이 작동했습니다. 산란을 어떻게 설치하고 있습니까?

virtualenv test
cd test/
. bin/activate
easy_install spawning
python -c 'import spawning'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top