Installation#
If you are working with Python packages (for example Dosepy), it is a good practice to create virtual environments for your different applications to avoid python-package dependency conflicts. To do that, first we need to install Miniconda (a Python package manager). Once installed, open Anaconda Prompt (a black window) and write the following commands:
conda create -n myenv python=3.12
conda activate myenv
pip install Dosepy
The first line is used to create an environment named “myenv”, with a specific version of Python: 3.12.
The second line activates the created environment.
The last one installs Dosepy.
For more information about environments, see this guide.
Open Dosepy GUI application#
Note: In the next version, the GUI will be removed to migrate to a web application.
First, start a Python interpreter, for example by running the python command:
python
Once you see the symbol >>>, run the next command:
>>> import Dosepy.app
The main window should be displayed.
