Skip to content

Commit 690cd43

Browse files
committed
Modify the error path information in the README.
1 parent e450f5e commit 690cd43

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ Aspose.Cells for Go via C++ is a native Go library designed for Go developers to
1212
- Go 1.16 or greater
1313

1414
## Quick Start Guide
15+
1516
<a id="installationinyourproject"></a>
17+
1618
### Installation Aspose.Cells for Go via C++ package and running your code in your project
1719

1820
1. Create a directory for your project and a main.go file within. Add the following code to your main.go.
@@ -152,12 +154,13 @@ Aspose.Cells for Go via C++ offers a wide arrange of features for creating, conv
152154
|[DOCX](https://docs.fileformat.com/word-processing/docx/)|A well-known format for Microsoft Word documents that is a combination of XML and binary files.||&radic;|
153155
|[PPTX](https://docs.fileformat.com/presentation/pptx/)|The PPTX format is based on the Microsoft PowerPoint open XML presentation file format.||&radic;|
154156

155-
156157
# Evaluate Aspose.Cells for Go via C++
158+
157159
You can use Aspose.Cells for Go via C++ free of cost for evaluation.The evaluation version provides almost all functionality of the product with certain limitations. The same evaluation version becomes licensed when you purchase a license and add a couple of lines of code to apply the license.
158160
If you want to test Aspose.Cells for Go via C++ without evaluation version limitations, you can also request a 30 Day Temporary License. Please refer to <a href="https://purchase.aspose.com/temporary-license/"> How to get a Temporary License</a>?
159161

160162
# Evaluation Version Limitations
163+
161164
Evaluation version of Aspose.Cells for Go via C++ without the specified license provides full product functionality, but inserts an evaluative watermark at the top of the document upon loading and saving and limits the maximum document size to a few hundred paragraphs.
162165

163166
# Run Aspose.Cells for Go via C++ in production
@@ -198,7 +201,7 @@ git clone https://github.com/aspose-cells/aspose-cells-go-cpp.git cells-go-cpp
198201

199202
Or
200203

201-
- 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.
204+
- 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.
202205

203206
1. Navigate to cells-go-cpp folder and build source code
204207

@@ -211,22 +214,22 @@ go build .
211214

212215
```cmd
213216
214-
set PATH=%PATH%;%YourProjectPath%/cells-go-cpp/lib/win_x86_64/
217+
set PATH=%PATH%;%YourProjectPath%\cells-go-cpp\lib\win_x86_64\
215218
216219
```
217220

218221
Or in your powershell
219222

220223
```powershell
221224
222-
$env:Path = $env:Path+ ";${YourProjectPath}/cells-go-cpp/lib/win_x86_64/"
225+
$env:Path = $env:Path+ ";${YourProjectPath}\cells-go-cpp\lib\win_x86_64\"
223226
224227
```
225228

226229
Or in your bash
227230

228231
```bash
229-
export PATH=$PATH:${YourProjectPath}/cells-go-cpp-samples/cells-go-cpp/lib/linux_x86_64/
232+
export PATH=$PATH:${YourProjectPath}/cells-go-cpp/lib/linux_x86_64/
230233

231234
```
232235

0 commit comments

Comments
 (0)