Skip to content

Commit 97fcb07

Browse files
committed
Optimize Readme
1 parent 8d4e62b commit 97fcb07

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ $env:Path = $env:Path+ ";${env:GOPATH}\github.com\aspose-cells\aspose-cells-go-c
8282
8383
```
8484

85-
Or in your bash
85+
Or in your linux bash
8686

8787
```bash
8888
export PATH=$PATH:$GOPATH/github.com/aspose-cells/aspose-cells-go-cpp/v25@v25.1.1/lib/linux_x86_64/
@@ -176,7 +176,7 @@ go get github.com/aspose-cells/aspose-cells-go-cpp/v25@v25.1.1
176176

177177
```
178178

179-
### **How to build Aspose.Cells for Go via C++ from the Source Code Package**
179+
### **How to build Aspose.Cells for Go via C++ from the Source Code Package and run samples**
180180

181181
1. Create a work directory for your project.
182182

@@ -190,27 +190,28 @@ git clone https://github.com/aspose-cells/aspose-cells-go-cpp.git cells-go-cpp
190190

191191
Or
192192

193-
- Download the source code package from the [Aspose.Cells for Go via C++ download page](https://downloads.aspose.com/cells/go-cpp/)
193+
- Download the source code package from the [Aspose.Cells for Go via C++ download page](https://downloads.aspose.com/cells/go-cpp/) and extract the ZIP file to cells-go-cpp folder in your work directory.
194194

195-
1. Build source code
195+
1. Navigate to cells-go-cpp folder and build source code
196196

197-
```go
197+
```bash
198+
cd "your work directory"/cells-go-cpp/
198199
go build .
199200
```
200201

201-
- **Set your PATH to point to the shared libraries in Aspose.Cells for Go via C++ in your current command shell. Replace your_version with the version of Aspose.Cells for Go via C++ you are running.**
202+
1. **Set your PATH to point to the shared libraries in Aspose.Cells for Go via C++ in your current command shell.**
202203

203204
```cmd
204205
205-
set PATH=%PATH%;%YourProjectPath%/cells-go-cpp-samples/cells-go-cpp/lib/win_x86_64/
206+
set PATH=%PATH%;%YourProjectPath%/cells-go-cpp/lib/win_x86_64/
206207
207208
```
208209

209210
Or in your powershell
210211

211212
```powershell
212213
213-
$env:Path = $env:Path+ ";${YourProjectPath}\cells-go-cpp-samples\cells-go-cpp\lib\win_x86_64\"
214+
$env:Path = $env:Path+ ";${YourProjectPath}/cells-go-cpp/lib/win_x86_64/"
214215
215216
```
216217

0 commit comments

Comments
 (0)