50 lines
1.1 KiB
YAML
Executable File
50 lines
1.1 KiB
YAML
Executable File
# SLIC environment description
|
|
# This is the default SLIC environment
|
|
# We are trying to be fairly up-to-date here, at the moment this is compatible with python 3.9.
|
|
|
|
|
|
# use via:
|
|
# conda env create --name $NEW_ENV_NAME --file $THIS_FILE_NAME
|
|
# e.g.
|
|
# conda env create --name slic --file conda-env.yml
|
|
# NOTE: $NEW_ENV_NAME is optional and defaults to slic
|
|
|
|
name: slic
|
|
channels:
|
|
- conda-forge
|
|
dependencies:
|
|
- python
|
|
- ipython
|
|
- numpy
|
|
- scipy
|
|
- matplotlib
|
|
- ipympl
|
|
# for execution and kernel discovery within jupyter
|
|
- ipykernel
|
|
# DAQ
|
|
- paulscherrerinstitute::bsread
|
|
# maybe useful for some special application:
|
|
# - paulscherrerinstitute::cam_server_client
|
|
- paulscherrerinstitute::data_api
|
|
- paulscherrerinstitute::elog
|
|
- pyepics # Used to be from paulscherrerinstitute, but changed here
|
|
# Own DAQ
|
|
- pyvisa-py
|
|
- pyserial
|
|
- pyusb
|
|
# data
|
|
- paulscherrerinstitute::jungfrau_utils >=3
|
|
- paulscherrerinstitute::sfdata
|
|
# GUI
|
|
- wxpython
|
|
# Channel access
|
|
- cachannel
|
|
# terminal
|
|
- colorama
|
|
- tqdm
|
|
- fuzzywuzzy
|
|
- logzero
|
|
- yaspin
|
|
- loguru
|
|
|