Skip to content

Commit c5173ae

Browse files
author
Czarnewski
committed
adds markdown+html formating
1 parent bd1b46d commit c5173ae

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

labs/FAQ.md

+42-42
Original file line numberDiff line numberDiff line change
@@ -19,71 +19,71 @@ Below you can find some common error and problems you might face either during i
1919

2020

2121
<details>
22-
<summary><b>Command line developer tools not found (OSX)</b></summary>
23-
<p>
22+
<summary><b>Command line developer tools not found (OSX)</b></summary>
23+
<p>
2424

25-
If you don't yet have Mac OSX command line developer tools, please install it using:
25+
If you don't yet have Mac OSX command line developer tools, please install it using:
2626

27-
```
28-
xcode-select --install
29-
```
27+
```
28+
xcode-select --install
29+
```
3030

31-
</p>
31+
</p>
3232
</details>
3333

3434
<br/>
3535

3636

3737
<details>
38-
<summary><b>Error - umap-learn not found</b></summary>
39-
<p>
38+
<summary><b>Error - umap-learn not found</b></summary>
39+
<p>
4040

41-
If your R does not find the correct python version, it will complain that `umap-learn` is not installed and ask you to install it. Here are some tips on how to find the correct python version that was installed in the conda environment.
41+
If your R does not find the correct python version, it will complain that `umap-learn` is not installed and ask you to install it. Here are some tips on how to find the correct python version that was installed in the conda environment.
4242

43-
<br/>
43+
<br/>
4444

45-
**Try selecting the correct conda env in R**
45+
**Try selecting the correct conda env in R**
4646

47-
In this example the conda environment is named `scRNAseq2021`.
48-
```
49-
library(reticulate)
50-
reticulate::use_conda("scRNAseq2021")
51-
```
47+
In this example the conda environment is named `scRNAseq2021`.
48+
```
49+
library(reticulate)
50+
reticulate::use_conda("scRNAseq2021")
51+
```
5252

53-
Then check what python you have in R:
54-
```
55-
reticulate::py_config()
56-
# should read at top:
57-
python: /Users/asbj/miniconda3/envs/scRNAseq2021/bin/python
58-
```
53+
Then check what python you have in R:
54+
```
55+
reticulate::py_config()
56+
# should read at top:
57+
python: /Users/asbj/miniconda3/envs/scRNAseq2021/bin/python
58+
```
5959

60-
If that still is not right, you may have an `r-reticulate` python installation as well and need to perform the steps below.
60+
If that still is not right, you may have an `r-reticulate` python installation as well and need to perform the steps below.
6161

62-
<br/>
62+
<br/>
6363

64-
**Restart R and select python version**
64+
**Restart R and select python version**
6565

66-
OBS! Before doing anything else you need to select python version.
66+
OBS! Before doing anything else you need to select python version.
6767

68-
First, find out what path you have to your conda python (in TERMINAL):
69-
```
70-
which python
71-
/Users/asbj/miniconda3/envs/scRNAseq2021/bin/python
72-
```
68+
First, find out what path you have to your conda python (in TERMINAL):
69+
```
70+
which python
71+
/Users/asbj/miniconda3/envs/scRNAseq2021/bin/python
72+
```
7373

74-
Then in R (after restarting):
75-
```
76-
reticulate::use_python("/Users/asbj/miniconda3/envs/scRNAseq2021/bin/python", required=T)
77-
```
74+
Then in R (after restarting):
75+
```
76+
reticulate::use_python("/Users/asbj/miniconda3/envs/scRNAseq2021/bin/python", required=T)
77+
```
7878

79-
Then check again with `py_config` if correct version of python is used:
80-
```
81-
reticulate::py_config()
82-
```
79+
Then check again with `py_config` if correct version of python is used:
80+
```
81+
reticulate::py_config()
82+
```
8383

84-
If you have the correct version now, you should be able to run UMAP without issues.
84+
If you have the correct version now, you should be able to run UMAP without issues.
8585

86-
</p>
86+
</p>
8787
</details>
8888

8989
<br/>

0 commit comments

Comments
 (0)