From 3b2184b329b338084b58b13251c094d822877659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20T=2E=20Jochym?= Date: Thu, 22 May 2014 01:08:32 +0200 Subject: [PATCH] Change the name of spglib -> pyspglib. Simplify installation. --- Installation.ipynb | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/Installation.ipynb b/Installation.ipynb index 432510a..cc2afc2 100644 --- a/Installation.ipynb +++ b/Installation.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:0e983e7c8794e09ade348cb2f543be924e4b4fd799412659e267c646f772734f" + "signature": "sha256:6afa0e1dbea9d7787df69bf1ac2fc46fd4a33567634db56eeb748f34382acad2" }, "nbformat": 3, "nbformat_minor": 0, @@ -103,7 +103,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Except for standard system software you will need only the `gcc` compiler for compilation of the spglib module." + "Except for standard system software you will need only the `gcc` compiler for compilation of the pyspglib module." ] }, { @@ -120,19 +120,11 @@ "source": [ "1. Create a new environment `nipy` with the basic packages installed:\n", "\n", - " conda create -n nipy ipython ipython-notebook numpy scipy matplotlib pip\n", + " conda create -n nipy ipython ipython-notebook numpy scipy matplotlib\n", " \n", - "2. and activate it:\n", + "2. install the non-standard packages:\n", "\n", - " source activate nipy\n", - "\n", - "3. install the `spglib` module\n", - "\n", - " pip install spglib\n", - " \n", - "4. install the non-standard packages:\n", - "\n", - " conda install -c https://conda.binstar.org/jochym python-ase elastic qeutil" + " conda install -n nipy -c https://conda.binstar.org/jochym python-ase pyspglib elastic qeutil" ] }, { @@ -155,11 +147,11 @@ "\n", "The command to update all installed packages:\n", "\n", - " conda update -c https://conda.binstar.org/jochym --all\n", + " conda update -n nipy -c https://conda.binstar.org/jochym --all\n", " \n", "If you need to update single package you use:\n", "\n", - " conda update -c https://conda.binstar.org/jochym name_of_the_package\n", + " conda update -n nipy -c https://conda.binstar.org/jochym name_of_the_package\n", " \n", " " ]