Skip to content

Commit

Permalink
Update python-workbench.qmd
Browse files Browse the repository at this point in the history
  • Loading branch information
dometto authored Jun 10, 2024
1 parent 1e90934 commit 2f67896
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions docs/workspaces/programming/python-workbench.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,17 @@ The first time (but only the first time) you login to a workspace of this type,
--- Running install scripts at first login: executing /home/username/runonce.d/runonce_conda.sh
```

When you are logged in you can start developing or running code. On the command line, you will have `pyenv`, `miniconda`, and `poetry` available. By default, `pyenv` will be configured to use the most recent version of Python shipped with the operating system. You can use `pyenv` to install and select a different (newer) Python version: e.g. `pyenv install 3.12`. See the [pyenv docs](https://github.com/pyenv/pyenv#usage).
When you are logged in you can start developing or running code. On the command line, you will have `pyenv`, `miniconda`, and `poetry` available.

By default, `pyenv` will be configured to use the most recent version of Python shipped with the operating system:

```
$ pyenv versions
system
* system-latest (set by /home/testuser/.pyenv/version)
``
You can use `pyenv` to install and select a different (newer) Python version: e.g. `pyenv install 3.12`, `pyenv global 3.12`. See the [pyenv docs](https://github.com/pyenv/pyenv#usage).
To start using `miniconda` environments, activate `conda` with the command `conda init`. See the [miniconda docs](https://docs.anaconda.com/free/miniconda/).
Expand All @@ -86,4 +96,4 @@ The user has [admin rights](../../responsible-use.qmd#installation-of-software)
## Tips
{{< include ../partials/_security.qmd >}}
{{< include ../partials/_security.qmd >}}

0 comments on commit 2f67896

Please sign in to comment.