Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

As with all Python projects, it is good practice to create a development environment in which to install all the libraries necessary for testing:

Code Block
languagebash
titleProcedure for CONDA Environment
linenumberstrue
$ conda create --name <name_of_environment> python=3.8.13
$ conda activate activate<name<name_of_environment>
$ pip install cothread==2.20.0
$  pippip install softioc==4.5.0

This is the minimal environment for operating a SoftIOC in Python.

...