warner / python-ed25519

Python bindings to the Ed25519 public-key signature system
Other
164 stars 38 forks source link

Problem installing with pip #2

Closed jimktrains closed 11 years ago

jimktrains commented 11 years ago

Using version 0.9 (newest of versions: 0.9, 0.8, 0.7, 0.6, 0.5, 0.4, 0.3) Downloading from URL https://pypi.python.org/packages/source/e/ed25519/ed25519-0.9.tar.gz#md5=34dc25737bf96d5cf3418961ffe7f189 (from https://pypi.python.org/simple/ed25519/) Running setup.py egg_info for package ed25519

Traceback (most recent call last):

  File "<string>", line 16, in <module>

  File "/tmp/pip-build-root/ed25519/setup.py", line 75

    print " keypair generation:",

                               ^

SyntaxError: invalid syntax

Complete output from command python setup.py egg_info:

Traceback (most recent call last):

File "", line 16, in

File "/tmp/pip-build-root/ed25519/setup.py", line 75

print " keypair generation:",

                           ^

SyntaxError: invalid syntax


Command python setup.py egg_info failed with error code 1 in /tmp/pip-build-root/ed25519

Exception information: Traceback (most recent call last): File "/usr/local/lib/python3.2/dist-packages/pip-1.3.1-py3.2.egg/pip/basecommand.py", line 139, in main status = self.run(options, args) File "/usr/local/lib/python3.2/dist-packages/pip-1.3.1-py3.2.egg/pip/commands/install.py", line 266, in run requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle) File "/usr/local/lib/python3.2/dist-packages/pip-1.3.1-py3.2.egg/pip/req.py", line 1057, in prepare_files req_to_install.run_egg_info() File "/usr/local/lib/python3.2/dist-packages/pip-1.3.1-py3.2.egg/pip/req.py", line 236, in run_egg_info command_desc='python setup.py egg_info') File "/usr/local/lib/python3.2/dist-packages/pip-1.3.1-py3.2.egg/pip/util.py", line 662, in call_subprocess % (command_desc, proc.returncode, cwd)) pip.exceptions.InstallationError: Command python setup.py egg_info failed with error code 1 in /tmp/pip-build-root/ed25519

% pip --version pip 1.3.1 from /usr/local/lib/python3.2/dist-packages/pip-1.3.1-py3.2.egg (python 3.2) jim@lilly /home/jim {+00% 62C} Thu 2013-03-28 17:19:04 0
% python --version Python 2.7.3

warner commented 11 years ago

From the pip --version output, it looks like your pip is actually using python3.2, which isn't supported.. sorry! python-ed25519 only supports python2.x so far (patches welcome :-).