2

ユニレストは python3 をサポートしていますか? 私はグーグルで検索しましたが、ゼロの情報が表示されます。ユニレストのドキュメントでさえ、2.x のみであるとは言っていないため、3.x と 2.x の両方をサポートしていると思われます。ただし、インストールは 3.4 で失敗し、2.7 で成功します。下記参照。

nkltss:~/dev$ mkvirtualenv mashape -p /usr/bin/python3
Running virtualenv with interpreter /usr/bin/python3
Using base prefix '/usr'
New python executable in mashape/bin/python3
Also creating executable in mashape/bin/python
Installing setuptools, pip...done.


(mashape)nkltss:~/dev$ pip install unirest
Downloading/unpacking unirest
  Downloading Unirest-1.1.6.tar.gz
  Running setup.py (path:/home/nick/.virtualenvs/mashape/build/unirest/setup.py) egg_info for package unirest

    warning: no files found matching '*.txt' under directory 'docs'
Downloading/unpacking poster>=0.8.1 (from unirest)
  Downloading poster-0.8.1.tar.gz
  Running setup.py (path:/home/nick/.virtualenvs/mashape/build/poster/setup.py) egg_info for package poster
    Traceback (most recent call last):
      File "<string>", line 17, in <module>
      File "/home/nick/.virtualenvs/mashape/build/poster/setup.py", line 2, in <module>
        import poster
      File "/home/nick/.virtualenvs/mashape/build/poster/poster/__init__.py", line 29, in <module>
        import poster.streaminghttp
      File "/home/nick/.virtualenvs/mashape/build/poster/poster/streaminghttp.py", line 61
        print "send:", repr(value)
                    ^
    SyntaxError: invalid syntax
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

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

  File "/home/nick/.virtualenvs/mashape/build/poster/setup.py", line 2, in <module>

    import poster

  File "/home/nick/.virtualenvs/mashape/build/poster/poster/__init__.py", line 29, in <module>

    import poster.streaminghttp

  File "/home/nick/.virtualenvs/mashape/build/poster/poster/streaminghttp.py", line 61

    print "send:", repr(value)

                ^

SyntaxError: invalid syntax

----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /home/nick/.virtualenvs/mashape/build/poster
Storing debug log for failure in /home/nick/.pip/pip.log

今のところ私は 2.7 を使用していますが、新しいプロジェクトには 3.x を使用することを好みます。

4

1 に答える 1

6

プロジェクトは Python 3 と互換性がありません。プロジェクトがこれを明示的に述べていない場合 (setup.pyトローブ分類子やドキュメントではなく)、ソース コードを確認する必要があります。

そこに私は見つけます:

プロジェクトは、特定のposterライブラリに依存します。urllib2

代わりにrequestsライブラリを使用します。すぐに使用できる Python 3 をサポートし、非同期要求を除いて、同じ機能セットをサポートします (ただし、欠点がないため、より優れていますurllib2)。非同期リクエストの場合、 を追加できますrequests-futures

于 2015-01-31T12:06:36.150 に答える