Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mooc-rr-ressources
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
4
Merge Requests
4
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Learning Lab
mooc-rr-ressources
Commits
0dfb970d
You need to sign in or sign up before continuing.
Commit
0dfb970d
authored
Feb 10, 2020
by
Konrad Hinsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mise à jour du tutoriel Guix
parent
dcb86d05
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
786 additions
and
3076 deletions
+786
-3076
guix_tutorial_fr.org
module5/ressources/guix_tutorial_fr.org
+741
-3071
guix-channels.scm
module5/ressources/moocrr_guix_jupyter/guix-channels.scm
+0
-5
manifest-with-pandas-0.25.1.scm
...urces/moocrr_guix_jupyter/manifest-with-pandas-0.25.1.scm
+30
-0
pandas.scm
module5/ressources/moocrr_guix_jupyter/pandas.scm
+15
-0
No files found.
module5/ressources/guix_tutorial_fr.org
View file @
0dfb970d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
module5/ressources/moocrr_guix_jupyter/guix-channels.scm
deleted
100644 → 0
View file @
dcb86d05
(
list
(
channel
(
name
'guix
)
(
url
"https://git.savannah.gnu.org/git/guix.git"
)
(
commit
"44881cad93801de9462d469500d582af79b99959"
)))
module5/ressources/moocrr_guix_jupyter/manifest-with-pandas-0.25.1.scm
0 → 100644
View file @
0dfb970d
(
use-modules
(
guix
packages
)
(
guix
download
)
(
guix
build-system
python
)
(
gnu
packages
python-science
))
(
define
modified-python-pandas
(
package
(
inherit
python-pandas
)
(
version
"0.25.1"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
pypi-uri
"pandas"
version
))
(
sha256
(
base32
"1xm9dmbngsq46vj836csnb5j0bs88b1d713b0b5vx1q6gdxijbnb"
))))))
(
define
standard-packages
(
map
(
compose
list
specification->package+output
)
'
(
"jupyter"
"python"
"python-matplotlib"
"python-numpy"
"python-pandas"
"python-statsmodels"
"python-nbconvert"
)))
(
packages->manifest
(
cons
modified-python-pandas
standard-packages
))
module5/ressources/moocrr_guix_jupyter/pandas.scm
0 → 100644
View file @
0dfb970d
(
use-modules
(
guix
packages
)
(
guix
download
)
(
guix
build-system
python
)
(
gnu
packages
python-science
))
(
package
(
inherit
python-pandas
)
(
version
"0.25.1"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
pypi-uri
"pandas"
version
))
(
sha256
(
base32
"1xm9dmbngsq46vj836csnb5j0bs88b1d713b0b5vx1q6gdxijbnb"
)))))
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