Last active
August 29, 2015 14:08
-
-
Save killerswan/25dc9858c47468368da9 to your computer and use it in GitHub Desktop.
an IJulia bug on Windows, fixed by running `Pkg.build("Nettle")` to generate that `deps.jl` file.
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
>ipython notebook --profile julia --log-level DEBUG | |
... | |
2014-10-24 20:01:26.605 [NotebookApp] Polling kernel... | |
ERROR: could not open file C:\Users\kevin.cantu\.julia\v0.3\Nettle\src\../deps/deps.jl | |
in include at boot.jl:245 | |
in include_from_node1 at loading.jl:128 | |
while loading C:\Users\kevin.cantu\.julia\v0.3\Nettle\src\Nettle.jl, in expression starting on line 3 | |
while loading C:\Users\kevin.cantu\.julia\v0.3\IJulia\src\IJulia.jl, in expression starting on line 11 | |
while loading C:\Users\kevin.cantu\.julia\v0.3\IJulia\src\kernel.jl, in expression starting on line 4 | |
... |
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
Microsoft Windows [Version 6.1.7601] | |
Copyright (c) 2009 Microsoft Corporation. All rights reserved. | |
C:\Users\kevin.cantu\Desktop>julia | |
_ | |
_ _ _(_)_ | A fresh approach to technical computing | |
(_) | (_) (_) | Documentation: http://docs.julialang.org | |
_ _ _| |_ __ _ | Type "help()" for help. | |
| | | | | | |/ _` | | | |
| | |_| | | | (_| | | Version 0.3.1 (2014-09-21 21:30 UTC) | |
_/ |\__'_|_|_|\__'_| | | |
|__/ | x86_64-w64-mingw32 | |
... | |
julia> Pkg.status | |
status (generic function with 2 methods) | |
julia> Pkg.status() | |
3 required packages: | |
- IJulia 0.1.15 | |
- ODBC 0.3.10 | |
- PyPlot 1.4.0 | |
23 additional packages: | |
- ArrayViews 0.4.6 | |
- BinDeps 0.3.6 | |
- Color 0.3.10 | |
- Compat 0.1.0 | |
- DataArrays 0.2.5 | |
- DataFrames 0.5.11 | |
- Dates 0.3.2 | |
- FixedPointNumbers 0.0.4 | |
- GZip 0.2.13 | |
- JSON 0.3.8 | |
- LaTeXStrings 0.1.0 | |
- LibExpat 0.0.4 | |
- Nettle 0.1.6 | |
- PyCall 0.4.10 | |
- REPLCompletions 0.0.3 | |
- Reexport 0.0.2 | |
- SHA 0.0.3 | |
- SortingAlgorithms 0.0.2 | |
- StatsBase 0.6.8 | |
- URIParser 0.0.3 | |
- WinRPM 0.1.4 | |
- ZMQ 0.1.14 | |
- Zlib 0.1.7 | |
julia> |
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
C:\code\neon\src-jl>pip freeze | |
Flask==0.10.1 | |
Jinja2==2.7.3 | |
MarkupSafe==0.23 | |
PyYAML==3.11 | |
Twisted==14.0.0 | |
Werkzeug==0.9.6 | |
backports.ssl-match-hostname==3.4.0.2 | |
certifi==14.05.14 | |
ecdsa==0.11 | |
ipython==2.3.0 | |
itsdangerous==0.24 | |
nose==1.3.3 | |
paramiko==1.15.1 | |
plumbum==1.4.2 | |
psutil==1.2.1 | |
pycrypto==2.6.1 | |
pymssql==2.1.0 | |
pyreadline==2.0 | |
pysphere==0.1.7 | |
pywin32==219 | |
pyzmq==14.4.0 | |
rpyc==3.3.0 | |
selenium==2.42.1 | |
six==1.8.0 | |
tornado==4.0.2 | |
virtualenv==1.11.6 | |
xmlrunner==1.7.6 | |
zope.interface==4.1.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment