This release contains two major changes for CNApy:
- The much-improved installation process is introduced, now with an automatic installer for Windows, Linux and MacOS. For more details, see the 1st point in the "Installation Options" below.
- Due to licensing issues, we suspend providing new conda packages for CNAPy. Instead, CNApy can now be installed using pip as it is now available as a PyPI package, see the 2nd point in the "Installation Options" below. For instructions on still using CNApy in a conda/mamba environment, see the 3rd point in the "Installation Options" below.
Installation Options
There are 4 alternative ways to install CNApy:
- The easiest way for any user to install CNApy is by downloading its installer, which is provided for Windows, Linux and MacOS, see Using CNApy installer for more.
- If you already have installed Python 3.10 (no other version) on your system, you can install CNApy simply through
pip install cnapy
in your console. Afterwards, you can start CNApy's GUI by running eithercnapy
or, if this doesn't work,python -m cnapy
where "python" must call your Python 3.10 installation. - If you already use conda or mamba (for mamba, just change the "conda" command to "mamba"), you can create a CNApy environment named
cnapy-1.2.2
as follows: 1) Runconda create --name cnapy-1.2.2 python=3.10 pip openjdk -c conda-forge
, 2) runconda activate cnapy-1.2.2
, 3) runpip install cnapy
. Then, you can start CNApy in the cnapy-1.2.2 conda environment by running eithercnapy
or, if this doesn't work,python -m cnapy
. Note that the cnapy conda package is currently not being updated due to licensing uncertainties. - If you want to develop CNApy, follow the instruction for the cloning and setup of the CNApy repository using git and conda or mamba in section Setup the CNApy development environment.
What's Changed
- Pypi by @axelvonkamp in #525
- Version 122 by @Paulocracy in #526
Full Changelog: v1.2.1...v1.2.2