2017-09-02 2132 views
1

我想在我的Linux服務器(SUSE Linux Enterprise Server 11)上使用svn,並安裝svn 1.8.19,但是當我使用:svn update時,問題出現:如何解決這個問題? SVN 1.8.19:E170000:無法識別的URL方案

svn: E170000: Unrecognized URL scheme for 'http://.....' 

這些信息來源爲SVN:

svn, version 1.8.19 (r1800620) 
compiled Aug 31 2017, 16:07:39 on x86_64-unknown-linux-gnu 

Copyright (C) 2017 The Apache Software Foundation. 
This software consists of contributions made by many people; 
see the NOTICE file for more information. 
Subversion is open source software, see http://subversion.apache.org/ 

以下的版本庫訪問(RA)模塊:

* ra_svn : Module for accessing a repository using the svn network protocol. 
    - handles 'svn' scheme 
* ra_local : Module for accessing a repository on local disk. 
    - handles 'file' scheme 

然後我找出我需要安裝scons的-2.5.1和農奴-1.3.9,但我安裝scons的-2.5.1後,我得到了一個錯誤:

SCons import failed. Unable to find engine files in: 
/usr/local/bin/../engine 
/usr/local/bin/scons-local-2.5.1 
/usr/local/bin/scons-local 
/usr/local/lib/scons-2.5.1 
/usr/lib/scons-2.5.1 
/usr/local/lib/scons-2.5.1 
/usr/local/lib/python2.6/site-packages/scons-2.5.1 
/usr/lib/python2.6/site-packages/scons-2.5.1 
/usr/local/lib/python2.6/site-packages/scons-2.5.1 
/usr/lib64/scons-2.5.1 
/usr/local/lib/scons 
/usr/lib/scons 
/usr/local/lib/scons 
/usr/local/lib/python2.6/site-packages/scons 
/usr/lib/python2.6/site-packages/scons 
/usr/local/lib/python2.6/site-packages/scons 
/usr/lib64/scons 
Traceback (most recent call last): 
File "/usr/local/bin/scons", line 190, in <module> 
import SCons.Script 
ImportError: No module named SCons.Script 

回答

0

svn客戶端未建立與支持爲http和https。它缺少添加http和https支持的serflibserf)庫。

+0

這意味着我應該先安裝serf?但我無法安裝scons,(編譯serf需要scons)... –

相關問題