diff --git a/INSTALLATION.rst b/INSTALLATION.rst index 51e5801f3..883af9aec 100644 --- a/INSTALLATION.rst +++ b/INSTALLATION.rst @@ -13,7 +13,7 @@ Installation - + @@ -36,7 +36,7 @@ Open a terminal (Linux & Mac) or the Anaconda Prompt (Windows) and type: .. code-block:: bash - conda create -n pg -c gimli -c conda-forge pygimli=1.4.6 + conda create -n pg -c gimli -c conda-forge "pygimli>=1.5.0" If you are using Windows or Mac, a new environment named "pg" should be visible in the Anaconda Navigator. If you want to use pyGIMLi from the command line, you @@ -84,7 +84,7 @@ again and install pygimli using conda just as mentioned above. import condacolab condacolab.check() - !conda install -c gimli pygimli=1.4.6 + !conda install -c gimli "pygimli>=1.5.0" Testing the installation ------------------------ diff --git a/README.md b/README.md index 9998af692..0d7625872 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ separate environment. Here we call this environment pg, but you can give it any name. Note that this environment has to be created only once. ``` bash -conda create -n pg -c gimli -c conda-forge pygimli=1.4.6 +conda create -n pg -c gimli -c conda-forge "pygimli>=1.5.0" ``` If you are using Windows or Mac, a new environment named “pg” should be visible in the Anaconda Navigator. If you want to use pygimli from the command line, you have to activate the environment. You can put this line in your ~/.bashrc file so that it is activated automatically if you open a terminal. diff --git a/environment.yml b/environment.yml index 4f0737b56..bbf7381e1 100644 --- a/environment.yml +++ b/environment.yml @@ -4,7 +4,7 @@ channels: - defaults - gimli dependencies: - - pgcore >= 1.4.0 + - pgcore >= 1.5.0 - matplotlib - jupyter - sphinx >= 3.1