Hi,
I already have a working ARTIQ environment installed which I use by running the sequences in a terminal, but I would like to run the sequences from a jupyter notebook. However, when trying to install jupyter, I realized that pip was not installed in the ARTIQ environment. When trying to install it using the command python -m ensurepip --upgrade, I get an error message because the repository containing the environment has been made immutable by the person creating it.
Hence my question is the following: Do I risk to create a conflict if I force the installation of pip in the ARTIQ environment?
Furthermore, once pip is installed (if I can), would the commands
pip install jupyter
python -m ipykernel install --user --name artiq-env --display-name "ARTIQ Environment"
jupyter notebook
be enough to be able to open a jupyter notebook that can run ARTIQ sequences as well as any python library ?
Thank you