2017-05-03 231 views
2

我想安裝最新的Anaconda發行版(4.3.1)的enaml。在http://nucleic.github.io/enaml/docs/get_started/installation.html安裝指南說:在Anaconda安裝enaml

The sections below describe how to install Enaml and all of its dependencies from scratch, starting with the installation of a Python runtime. The instructions assume that the user’s system has a C++ compiler and the Git command line tools installed and available on the system path.

The Easy Way

If installing and building Enaml and its dependencies from scratch is not appealing, the free (and unaffiliated) Anaconda Python distribution provides a complete Python environment which comes with a reasonably recent version of Enaml and a host of other useful packages.

If you have a working C++ compiler, you can install using pip:

$ pip install enaml

能否請你告訴我安裝一個C++編譯器和Git命令行工具,使他們系統路徑上可用的最簡單的方法?

我的嘗試: 我嘗試安裝Visual Studio但它原來是32位,所以點子安裝enaml或原子時,我得到了以下錯誤:

未能建築輪原子

致命錯誤LNK1112:模塊機器類型'x64'與目標機器類型'X86'衝突

回答

0

conda install enaml在anaconda中安裝軟件包的方式比pip install更常用,至少對於它所知道的軟件包而言。 Enaml和Atom是這個名單中的一員。

這會繞過C++編譯,因此它可能不是您想要的,但它是安裝Enaml的最簡單方法。 (從源代碼構建時我有一個黑色的拇指,所以Anaconda對我來說效果很好。)