私はちょうど私のアナコンダのPython 3のインストールにインストール打ち鳴らすのピップと私は打ち鳴らすのPythonバインディングをインポートすることができませんよ...はアナコンダ/のpython3で打ち鳴らすバインディングをインポートすることができません
C:\Temp>python -m pip install clang --proxy="xxxxx"
Collecting clang
Downloading clang-3.8.tar.gz
Building wheels for collected packages: clang
Running setup.py bdist_wheel for clang ... done
Stored in directory: C:\xxxxxx
Successfully built clang
Installing collected packages: clang
Successfully installed clang-3.8
C:\Temp>python
>>> import clang.cindex
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Anaconda3\lib\site-packages\clang\cindex.py", line 515
raise ValueError,'{0} value {1} already loaded'.format(
^
SyntaxError: invalid syntax
は、私は正常にしかし、ことができますよそれ自体で輸入打ち鳴らす、何か役に立つと...例外がスローされたソースファイルを見てみると
>>> import clang
>>> clang.
clang.__all__ clang.__loader__ clang.__spec__ clang.__dir__( clang.__getattribute__(clang.__le__( clang.__reduce__( clang.__sizeof__(
clang.__cached__ clang.__name__ clang.__class__( clang.__eq__( clang.__gt__( clang.__lt__( clang.__reduce_ex__( clang.__str__(
clang.__doc__ clang.__package__ clang.__delattr__( clang.__format__( clang.__hash__( clang.__ne__( clang.__repr__( clang.__subclasshook__(
clang.__file__ clang.__path__ clang.__dict__ clang.__ge__( clang.__init__( clang.__new__( clang.__setattr__(
が、それはのpython3の構文の問題である可能性があり示唆に思われていないがが...
### Cursor Kinds ###
class BaseEnumeration(object):
"""
Common base class for named enumerations held in sync with Index.h values.
Subclasses must define their own _kinds and _name_map members, as:
_kinds = []
_name_map = None
These values hold the per-subclass instances and value-to-name mappings,
respectively.
"""
def __init__(self, value):
if value >= len(self.__class__._kinds):
self.__class__._kinds += [None] * (value - len(self.__class__._kinds) + 1)
if self.__class__._kinds[value] is not None:
raise ValueError,'{0} value {1} already loaded'.format(#<--Py2 Syntax str(self.__class__), value)
self.value = value
self.__class__._kinds[value] = self
self.__class__._name_map = None
残りのcindex.pyを見ると、Python3用のlibclangバインディングはまだ開発されていないようです。それは正確なのですか、インストール中に私のピップや何かが混ざり合ったのですか?修正超える
これは、2.7よりも優先順位が高いパスになっている必要があります。 'which python'と' which pip'コマンドを入力し、あなたのパス出力を確認してください – jxramos
ありがとう、あなたjxramos。私のポストは、 'pip'の代わりに' pip2'を呼ぶことで問題を解決できることに気付きました。 – Mikaelblomkvistsson