Installation

Please follow the following instructions for installation

windows

pip install IPhreeqcPy
  • If you want to install IPhreeqcPy in a specific location specify following additional directives
pip install --install-option="--prefix=*YOUR INSTALL PATH*" --ignore-installed IPhreeqcPy
  • Specific version available in PyPi can be installed using following directives
pip install IPhreeqcPy==*version name*
  • To test installation type following in python console
import IPhreeqcPy
IPhreeqcPy.test()
  • To upgrade your current installation type following in windows console
pip install --upgrade IPhreeqcPy
  • To uninstall IPhreeqcPy type following in windows console
pip uninstall IPhreeqcPy

Linux

  • Open linux terminal and type following
sudo pip install IPhreeqcPy
  • If you want to install IPhreeqcPy in a specific location specify following additional directives
pip install --install-option="--prefix=*YOUR INSTALL PATH*" --ignore-installed IPhreeqcPy
  • Specific version available in PyPi can be installed using following directives
pip install IPhreeqcPy==*version name*
  • To test installation type following in python console
IPhreeqcPy.test()
  • To upgrade your current installation type following in linux terminal
pip install --upgrade IPhreeqcPy
  • To uninstall IPhreeqcPy type following in linux terminal
pip uninstall IPhreeqcPy