Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recommend DLS users to not use $HOME #127

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/tutorials/setup_workstation.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ CLI tools by clicking on the appropriate linux distribution link.
### Install Python

:::{Note}
**DLS Users**: use `module load python/3.11`
**DLS Users**: for this step just use `module load python/3.11`
:::

Go ahead and install Python 3.10 or later. 3.11 is recommended as this is the
Expand All @@ -100,10 +100,17 @@ highest version that epics-containers has been tested with.
There are instructions for installing Python on all platforms here:
<https://docs.python-guide.org/starting/installation/>

### Setup virtual environment


Once you have python set up a virtual environment for your epics-containers
work. In the examples we will use `$HOME/ec-venv` as the virtual environment
but you can choose any folder.

:::{Note}
**DLS Users**: As `$HOME` is a network drive it has an 8GB limit, consider other locations such as `/dls/science/` or `/scratch/`. Read more [here]([url](https://gitlab.diamond.ac.uk/sscc-docs/developer-guide/-/issues/13))
:::

```bash
python -m venv $HOME/ec-venv
source $HOME/ec-venv/bin/activate
Expand Down