Created
October 21, 2015 15:50
-
-
Save simonbyrne/3d96616c1f9823bfb00c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"cells": [ | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"name": "stderr", | |
"output_type": "stream", | |
"text": [ | |
"INFO: Initializing package repository /home/juser/.julia/v0.4\n", | |
"INFO: Cloning METADATA from git://github.com/JuliaLang/METADATA.jl\n", | |
"INFO: Updating METADATA...\n", | |
"INFO: Computing changes...\n", | |
"INFO: No packages to install, update or remove\n" | |
] | |
} | |
], | |
"source": [ | |
"Pkg.init()\n", | |
"Pkg.update()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"name": "stderr", | |
"output_type": "stream", | |
"text": [ | |
"INFO: Cloning cache of BinDeps from git://github.com/JuliaLang/BinDeps.jl.git\n", | |
"INFO: Cloning cache of Cairo from git://github.com/JuliaLang/Cairo.jl.git\n", | |
"INFO: Cloning cache of ColorTypes from git://github.com/JuliaGraphics/ColorTypes.jl.git\n", | |
"INFO: Cloning cache of Colors from git://github.com/JuliaGraphics/Colors.jl.git\n", | |
"INFO: Cloning cache of Compat from git://github.com/JuliaLang/Compat.jl.git\n", | |
"INFO: Cloning cache of Docile from git://github.com/MichaelHatherly/Docile.jl.git\n", | |
"INFO: Cloning cache of FixedPointNumbers from git://github.com/JeffBezanson/FixedPointNumbers.jl.git\n", | |
"INFO: Cloning cache of Graphics from git://github.com/JuliaLang/Graphics.jl.git\n", | |
"INFO: Cloning cache of Reexport from git://github.com/simonster/Reexport.jl.git\n", | |
"INFO: Cloning cache of SHA from git://github.com/staticfloat/SHA.jl.git\n", | |
"INFO: Cloning cache of URIParser from git://github.com/JuliaWeb/URIParser.jl.git\n", | |
"INFO: Installing BinDeps v0.3.18\n", | |
"INFO: Installing Cairo v0.2.31\n", | |
"INFO: Installing ColorTypes v0.1.7\n", | |
"INFO: Installing Colors v0.5.4\n", | |
"INFO: Installing Compat v0.7.7\n", | |
"INFO: Installing Docile v0.5.19\n", | |
"INFO: Installing FixedPointNumbers v0.0.12\n", | |
"INFO: Installing Graphics v0.1.3\n", | |
"INFO: Installing Reexport v0.0.3\n", | |
"INFO: Installing SHA v0.1.2\n", | |
"INFO: Installing URIParser v0.1.1\n", | |
"INFO: Building Cairo\n", | |
"INFO: Precompiling module URIParser...\n", | |
"INFO: Precompiling module SHA...\n", | |
"INFO: Recompiling stale cache file /home/juser/.julia/lib/v0.4/Compat.ji for module Compat.\n", | |
"INFO: Recompiling stale cache file /home/juser/.julia/lib/v0.4/SHA.ji for module SHA.\n", | |
"WARNING: Module Compat uuid did not match cache file\n", | |
"================================[ ERROR: Cairo ]================================\n", | |
"\n", | |
"LoadError: LoadError: LoadError: __precompile__(true) but require failed to create a precompiled cache file\n", | |
"while loading /home/juser/.julia/v0.4/BinDeps/src/dependencies.jl, in expression starting on line 969\n", | |
"while loading /home/juser/.julia/v0.4/BinDeps/src/BinDeps.jl, in expression starting on line 507\n", | |
"while loading /home/juser/.julia/v0.4/Cairo/deps/build.jl, in expression starting on line 1\n", | |
"\n", | |
"================================================================================\n", | |
"\n", | |
"================================[ BUILD ERRORS ]================================\n", | |
"\n", | |
"WARNING: Cairo had build errors.\n", | |
"\n", | |
" - packages with build errors remain installed in /home/juser/.julia/v0.4\n", | |
" - build the package(s) and all dependencies with `Pkg.build(\"Cairo\")`\n", | |
" - build a single package by running its `deps/build.jl` script\n", | |
"\n", | |
"================================================================================\n", | |
"INFO: Package database updated\n" | |
] | |
} | |
], | |
"source": [ | |
"Pkg.add(\"Cairo\")" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"collapsed": true | |
}, | |
"outputs": [], | |
"source": [] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Julia 0.4.0", | |
"language": "julia", | |
"name": "julia-0.4" | |
}, | |
"language_info": { | |
"file_extension": ".jl", | |
"mimetype": "application/julia", | |
"name": "julia", | |
"version": "0.4.0" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment