This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Xcode 4.3.3 | |
Apple clang version 3.1 (tags/Apple/clang-318.0.61) (based on LLVM 3.1svn) | |
Target: x86_64-apple-darwin11.4.0 | |
Thread model: posix | |
# Xcode 4.3.2 | |
Apple clang version 3.1 (tags/Apple/clang-318.0.58) (based on LLVM 3.1svn) | |
Target: x86_64-apple-darwin11.4.0 | |
Thread model: posix |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ clang --version | |
Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn) | |
Target: x86_64-apple-darwin13.4.0 | |
Thread model: posix | |
$ conda build . | |
Removing old build environment | |
Removing old work directory | |
BUILD START: protobuf-3.0.0b2-py27_3 | |
Using Anaconda Cloud api site https://api.anaconda.org | |
Fetching package metadata: .............. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set data = load_setup_py_data() %} | |
package: | |
name: {{ data.get('name').lower() }} | |
version: "{{ data.get('version') }}" | |
build: | |
number: 0 | |
noarch: python | |
script: python setup.py install --single-version-externally-managed --record=record.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cartopy=0.14.2=np111py34_0 | |
cycler=0.10.0=py34_0 | |
freetype=2.6.3=0 | |
geos=3.4.2=1 | |
icu=56.1=2 | |
jpeg=9b=0 | |
libiconv=1.14=1 | |
libpng=1.6.21=1 | |
libtiff=4.0.6=4 | |
libxml2=2.9.3=6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Determine the directory containing this script | |
if [[ -n $BASH_VERSION ]]; then | |
_SCRIPT_LOCATION=${BASH_SOURCE[0]} | |
SHELL="bash" | |
elif [[ -n $ZSH_VERSION ]]; then | |
_SCRIPT_LOCATION=${funcstack[1]} | |
SHELL="zsh" | |
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Last login: Wed Jun 15 17:09:10 on ttys004 | |
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/local/git/bin:/usr/local/MacGPG2/bin:/Library/TeX/texbin | |
prepending /zopt/conda2/envs/test/bin to PATH | |
((test)) kirkhamj-lm1:~ kirkhamj$ env | |
PROMPT_VAR=PS1 | |
TERM_PROGRAM=Apple_Terminal | |
SHELL=bash | |
TERM=xterm-256color | |
TMPDIR=/var/folders/jj/pp1xwt1n4zdgy9zxbxc22t8w66tr7q/T/ | |
Apple_PubSub_Socket_Render=/tmp/launch-IbGiHb/Render |
We would like to position Conda as a language-agnostic package manager, but at present it maintains a distinct bias towards Python. This is both inevitable and, frankly, reasonable. Nevertheless, as we begin to use it to subsume other packaging ecosystems, such as CRAN, NPM, Ruby Gems, etc., we are often going to run into naming conflicts.