StarCycle commited on
Commit
40c6b18
1 Parent(s): 45b5767

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -45,6 +45,27 @@ xtuner chat internlm/internlm2-chat-7b \
45
  --image $IMAGE_PATH
46
  --no-streamer
47
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
49
  ## Training
50
  1. Alignment module pretraining
 
45
  --image $IMAGE_PATH
46
  --no-streamer
47
  ```
48
+ ## Common Errors
49
+ 1.
50
+ ```
51
+ command error: 'libGL.so.1: cannot open shared object file: No such file or directory'!
52
+ ```
53
+ You can solve it by
54
+ ```
55
+ # For Ubuntu
56
+ sudo apt-get update
57
+ sudo apt-get install libgl1-mesa-glx
58
+
59
+ # For CentOS and Fedora
60
+ sudo yum install mesa-libGL
61
+ ```
62
+
63
+ 2.
64
+ ```
65
+ Error: mkl-service + Intel(R) MKL: MKL_THREADING_LAYER=INTEL is incompatible with libgomp.so.1 library.
66
+ Try to import numpy first or set the threading layer accordingly. Set MKL_SERVICE_FORCE_INTEL to force it.
67
+ ```
68
+ You can solve it by reinstall numpy.
69
 
70
  ## Training
71
  1. Alignment module pretraining