예제 #1
0
def main():
    if os.name == 'nt':
        raise ValueError('Certbot for Windows is not supported on Python 2.x.')

    venv_args = get_venv_args()

    _venv_common.main('venv', venv_args, REQUIREMENTS)
예제 #2
0
파일: venv3.py 프로젝트: buzz3rs/certbot
def main():
    venv_args = get_venv_args()

    _venv_common.main('venv3', venv_args, REQUIREMENTS)
예제 #3
0
def main():
    venv_args = '--python "{0}"'.format(_venv_common.find_python_executable(3))
    _venv_common.main('venv3', venv_args, REQUIREMENTS)
예제 #4
0
def main():
    if os.name == 'nt':
        raise ValueError('Certbot for Windows is not supported on Python 2.x.')

    venv_args = '--python "{0}"'.format(_venv_common.find_python_executable(2))
    _venv_common.main('venv', venv_args, REQUIREMENTS)
예제 #5
0
def main():
    venv_args = '--python "{0}"'.format(_venv_common.find_python_executable(3))
    _venv_common.main('venv3', venv_args, REQUIREMENTS)