2014-01-05 98 views
3

我試圖在Python3.4進口setuptools如下,'setuptools'模塊不包含在python 3.4中?

>>> from setuptools import setup 

,但我得到了ImportError: No module named 'setuptools'

我的當前版本Python3.4Python 3.4.0b1 (default, Nov 29 2013, 16:37:17),它的安裝使用MacPorts

因此Python 3.4標準庫中沒有包含setuptools模塊,對吧?我需要通過pip安裝setuptools模塊?

更新:

setuptools不在標準庫。但我無法通過pip安裝它,因爲pip需要先安裝setuptoolsMacPorts包含py34-setuptools @2.0.2端口,我可以通過它安裝setuptools

+4

我認爲setuptools的一般都不會在標準庫... – mgilson

回答

-2

它爲我,但我使用3.4b2一個Linux Mint的系統上:

$ /usr/local/cpython-3.4/bin/python 
Python 3.4.0b2 (default, Jan 5 2014, 13:53:24) 
[GCC 4.7.2] on linux 
Type "help", "copyright", "credits" or "license" for more information. 
>>> from setuptools import setup 
>>> 
5

setuptools從未成爲標準庫的一部分。你會永遠單獨下載它。

3.4,下載setuptools - (!這是壓縮的下載鏈接),解壓縮,並通過安裝:

python setup.py install