2017-12-08 2 views
0

pyforms을 배우고 싶습니다. 시작하는 데 문제가 있습니다.ImportError : 'loggingbootstrap'이라는 모듈이 없습니다

가 나는 업그레이드 this를 사용하여이 고정 pysettings 어제 그럼 난 pysettingsconf

ImportError: cannot import name 'conf' 

를 가져올 수 없다는 대한 오류를 얻고 있었다

pip install pyforms 
pip install pysettings 

를 사용하여 그것을 함께 설치 내 pyforms 및 내 pysettings github 저장소에서

pip install git+https://github.com/UmSenhorQualquer/pyforms.git --upgrade 
pip install git+https://github.com/UmSenhorQualquer/pysettings.git --upgrade 

하지만 지금 나는 당신이 loggingbootstrap 설치할 수 있습니다

>>> import pyforms 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "C:\Python34\lib\site-packages\pyforms\__init__.py", line 4, in <module> 
    import loggingbootstrap 
ImportError: No module named 'loggingbootstrap' 

답변

0

이 오류를 얻을 내 프로젝트에 pyforms을 가져올 때 :

pip install git+https://bitbucket.org/fchampalimaud/logging-bootstrap.git

에게
관련 문제