Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
96ce9501
Commit
96ce9501
authored
Aug 16, 2015
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Formatting
parent
cab4cfdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
IPython.hs
src/IHaskell/IPython.hs
+6
-3
No files found.
src/IHaskell/IPython.hs
View file @
96ce9501
...
...
@@ -131,7 +131,8 @@ verifyIPythonVersion = do
pathMay
<-
SH
.
which
"jupyter"
pathMay'
<-
SH
.
which
"ipython"
case
(
pathMay
,
pathMay'
)
of
(
Nothing
,
Nothing
)
->
badIPython
"No Jupyter detected -- install Jupyter 3.0+ before using IHaskell."
(
Nothing
,
Nothing
)
->
badIPython
"No Jupyter detected -- install Jupyter 3.0+ before using IHaskell."
(
Just
path
,
_
)
->
do
SH
.
silently
(
SH
.
run
path
[
"--version"
])
output
<-
T
.
unpack
<$>
SH
.
lastStderr
...
...
@@ -145,8 +146,10 @@ verifyIPythonVersion = do
(
_
,
Just
path
)
->
do
output
<-
T
.
unpack
<$>
SH
.
silently
(
SH
.
run
path
[
"--version"
])
case
parseVersion
output
of
Just
(
x
:
_
)
->
if
x
>=
3
then
return
()
else
oldIPython
_
->
badIPython
"Detected Jupyter, but could not parse version number."
Just
(
x
:
_
)
->
if
x
>=
3
then
return
()
else
oldIPython
_
->
badIPython
"Detected IPython, but could not parse version number."
where
badIPython
::
Text
->
SH
.
Sh
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment