From c98ae343018dc3ae4c39b8a21b48a56832d35773 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Thu, 7 Dec 2023 21:08:40 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- workflow/python_pure/README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/workflow/python_pure/README.md b/workflow/python_pure/README.md index 33e2e71..2ca46b4 100644 --- a/workflow/python_pure/README.md +++ b/workflow/python_pure/README.md @@ -15,7 +15,7 @@ Questions to [David Rotermund](mailto:davrot@uni-bremen.de) We need to download a suitable Python version from [https://www.python.org](https://www.python.org). In the case we want to use PyTorch [check here](https://pytorch.org/get-started/locally/#windows-python) or TensorFlow [check here](https://www.tensorflow.org/install/pip#software_requirements) we need to check if the Python version is okay. -I downloded this file: +I downloaded this file: [https://www.python.org/ftp/python/3.11.7/python-3.11.7-amd64.exe](https://www.python.org/ftp/python/3.11.7/python-3.11.7-amd64.exe) ![figure 1](Image1.png) @@ -30,6 +30,11 @@ python.exe -m pip install --upgrade pip ### Numba +{: .topic-optional} +This is an optional topic! + +The question is: Is numba broken in the moment or not? First we install numpy and then numba. We will observe if numba tried to change the numpy version. + ```shell pip install numpy ``` @@ -38,6 +43,12 @@ pip install numpy pip install numba ``` +If so then you have to decide if you want to remove numba and the downgraded numpy version before continuing. I would remove it! + +```shell +pip uninstall numpy numba +``` + |Package|| |---|---| |numba|[Numba is an open source JIT compiler that translates a subset of Python and NumPy code into fast machine code.](https://numba.pydata.org/)|