Skip to content

Commit cf93b8c

Browse files
author
Czarnewski
committed
adds markdown+html formating
1 parent 29acf91 commit cf93b8c

File tree

1 file changed

+33
-2
lines changed

1 file changed

+33
-2
lines changed

Diff for: labs/FAQ.md

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

2020

2121
<details>
22-
<summary markdown="span">**Command line developer tools not found (OSX)**</summary>
22+
<summary markdown="span">`Command line developer tools not found (OSX)`</summary>
2323

2424
If you don't yet have Mac OSX command line developer tools, please install it using:
2525

@@ -31,7 +31,7 @@ Below you can find some common error and problems you might face either during i
3131

3232

3333
<details>
34-
<summary markdown="span">**Error - umap-learn not found**</summary>
34+
<summary markdown="span">`Error - umap-learn not found`</summary>
3535

3636
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.
3737

@@ -83,10 +83,41 @@ Below you can find some common error and problems you might face either during i
8383

8484
<br/>
8585

86+
<details>
87+
<summary markdown="span">`Unable to load stringi.so` (UNIX/Windows)</summary>
88+
89+
You can install stringi in R using:
90+
91+
```
92+
install.packages('stringi')
93+
```
94+
95+
</details>
96+
8697

98+
<details>
99+
<summary markdown="span">`ERROR: Failed building wheel for gevent` (MacOSX)</summary>
100+
101+
This is a problem with the MacOSX compiler, in which conda is unable to find it.
102+
103+
```
104+
#Download MacOSX10.9.sdk from Github
105+
curl -o MacOSX10.9.sdk.tar.gz "https://github-production-release-asset-2e65be.s3.amazonaws.com/13597203/f0123b00-34ab-11ea-84b1-27ccc324f983?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210122%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210122T065821Z&X-Amz-Expires=300&X-Amz-Signature=e11864967b0c9a1e1ba1121dbadd35bb3129ae1cd87bdf07b1a9965c731ae129&X-Amz-SignedHeaders=host&actor_id=22674952&key_id=0&repo_id=13597203&response-content-disposition=attachment%3B%20filename%3DMacOSX10.9.sdk.tar.xz&response-content-type=application%2Foctet-stream"
87106
107+
#extract
108+
sudo tar -xzf MacOSX10.9.sdk.tar.xz
88109
110+
#copy
111+
sudo cp -r ~/Downloads/MacOSX10.9.sdk /opt/
89112
113+
#give executable permissions
114+
sudo chmod -R a+rX /opt
115+
116+
#Link the path where conda looks to where the file is
117+
ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk /opt/MacOSX10.9.sdk
118+
```
119+
120+
</details>
90121

91122

92123
***

0 commit comments

Comments
 (0)